-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (37 loc) · 825 Bytes
/
pyproject.toml
File metadata and controls
45 lines (37 loc) · 825 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
[project]
name = "python-template"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
authors = [
{ name = "John DeAngelis", email = "johndeange@pm.me" }
]
requires-python = ">=3.14"
dependencies = [
"pydantic>=2.0",
]
[project.scripts]
python-template = "python_template:main"
[build-system]
requires = ["uv_build>=0.10.4"]
build-backend = "uv_build"
[dependency-groups]
dev = [
"mypy>=1.0",
"pre-commit>=4.0.0",
"pytest>=9.0.2",
"pytest-cov>=7.1.0",
"ruff>=0.15.7",
]
[tool.ruff]
line-length = 88
target-version = "py314"
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.ruff.lint]
select = ["E", "F", "I", "UP"] # pycodestyle, pyflakes, isort, pyupgrade
[tool.ruff.format]
quote-style = "double"
[tool.mypy]
strict = true
plugins = ["pydantic.mypy"]