-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
82 lines (72 loc) · 2.07 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
74
75
76
77
78
79
80
81
82
[build-system]
requires = [
"setuptools>=61.0",
"setuptools_scm[toml]>=6.2",
]
build-backend = "setuptools.build_meta"
[project]
name = "dep_builder"
dynamic = [
"version",
"readme",
]
description = "Scripts for building nano-qmflows C/C++ dependencies."
license = { file = "LICENSE.md" }
authors = [
{ name = "Bas van Beek", email = "bas.vanbeek@hotmail.com" },
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development :: Build Tools",
"Typing :: Typed",
]
requires-python = ">=3.7"
dependencies = [
"requests",
"packaging",
]
[project.urls]
Homepage = "https://github.com/nlesc-nano/nano-qmflows-manylinux"
"Bug Tracker" = "https://github.com/nlesc-nano/nano-qmflows-manylinux/issues"
Documentation = "https://nano-qmflows-manylinux.readthedocs.io/en/latest/"
[project.optional-dependencies]
doc = [
"sphinx>=4.1",
"sphinx_rtd_theme",
]
lint = [
"pydocstyle[toml]>=6.1",
"flake8>=5",
"Flake8-pyproject>=1.0.1",
"mypy",
"types-requests",
]
[tool.setuptools.packages.find]
include = ["dep_builder*"]
[tool.setuptools.package-data]
dep_builder = ["py.typed"]
[tool.setuptools.dynamic]
readme = { file = ["README.rst"], content-type = "text/x-rst" }
[tool.setuptools_scm]
write_to = "dep_builder/_version.py"
[tool.mypy]
show_error_codes = true
strict = true
[tool.pydocstyle]
add_ignore = ["D401"]
[tool.flake8]
max-line-length = 125
exclude = ["dep_builder/_version.py"]