-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (34 loc) · 786 Bytes
/
pyproject.toml
File metadata and controls
39 lines (34 loc) · 786 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
[project]
name = "ProjectName"
version = "0.1.0"
description = "Base template for NVIDIA-enabled Python projects on remote docker server"
authors = [{ name = "user", email = "email@domain.com" }]
dependencies = [
"pydantic",
"watchfiles"
]
[tool.uv]
resolver = "fast"
dependencies = [
"ruff",
"black",
"mypy",
"pytest",
"pytest-cov",
"types-requests",
"types-setuptools",
"sphinx-autodoc-typehints"
]
[tool.ruff]
line-length = 99
exclude = ["migrations", "__pycache__"]
extend-ignore = ["F403"]
select = ["E", "W", "F"]
[tool.isort]
known_third_party = ["requests", "numpy"]
known_first_party = ["my_project"]
sections = ["FUTURE", "STDLIB", "THIRDPARTY", "FIRSTPARTY", "LOCALFOLDER"]
[tool.black]
line-length = 99
[tool.mypy]
strict = true