-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
62 lines (53 loc) · 1.17 KB
/
pyproject.toml
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "thermite"
authors = [{name = "Holger Hoefling", email = "[email protected]"}]
readme = "README.md"
license = {file = "LICENSE"}
classifiers = ["License :: OSI Approved :: MIT License"]
dynamic = ["version", "description"]
requires-python = ">=3.10"
dependencies = [
"rich",
"more_itertools",
"attrs",
"cattrs",
"beartype",
"docstring-parser",
"immutabledict",
"exceptiongroup",
"prettyprinter",
"loguru",
]
[project.urls]
Documentation = "https://hhoeflin.github.io/thermite/"
Source = "https://github.com/hhoeflin/thermite"
[project.optional-dependencies]
dev = [
"pudb >=2021.2.2",
"pytest >=6.2.5",
"pytest-pudb >=0.7.0",
"mypy",
"black",
"Flake8-pyproject",
"pydocstyle",
"mkdocs-material",
"mkdocstrings[python]",
]
[tool.pyright]
include=['thermite']
exclude=['.conda_env']
typeCheckingMode='off'
[tool.black]
line-length = 88
[tool.isort]
profile = "black"
line_length = 88
[tool.flake8]
max_line_length = 88
ignore = "D203,E203"
[tool.pydocstyle]
add_ignore = ["D105"]
ignore_decorators = ["overrides"]