-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
73 lines (63 loc) · 1.73 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
63
64
65
66
67
68
69
70
71
72
73
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools", "wheel", "unidep"]
[project]
# See https://setuptools.pypa.io/en/latest/userguide/quickstart.html for more project configuration options.
name = "anri"
dynamic = ["version", "dependencies", "optional-dependencies"]
readme = "README.md"
classifiers = [
"Intended Audience :: Science/Research",
"Development Status :: 1 - Planning",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
]
authors = [
{name = "James Ball", email = "jadball@gmail.com"}
]
requires-python = ">=3.9"
license = {file = "LICENSE"}
[project.urls]
Homepage = "https://github.com/jadball/anri"
Repository = "https://github.com/jadball/anri"
Changelog = "https://github.com/jadball/anri/blob/main/CHANGELOG.md"
# Documentation = "https://anri.readthedocs.io/"
[tool.setuptools.packages.find]
exclude = [
"*.tests",
"*.tests.*",
"tests.*",
"tests",
"docs*",
"scripts*"
]
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-data]
anri = ["py.typed"]
[tool.setuptools.dynamic]
version = {attr = "anri.version.VERSION"}
# You can override these pyright settings by adding a personal pyrightconfig.json file.
[tool.pyright]
reportPrivateImportUsage = false
ignore = ["*"]
[tool.mypy]
ignore_missing_imports = true
no_site_packages = true
check_untyped_defs = true
exclude = [
"^anri/sandbox/.*",
"^build/.*"
]
[[tool.mypy.overrides]]
module = "tests.*"
strict_optional = false
[tool.pytest.ini_options]
testpaths = "tests/"
python_classes = [
"Test*",
"*Test"
]
log_format = "%(asctime)s - %(levelname)s - %(name)s - %(message)s"
log_level = "DEBUG"