-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpyproject.toml
60 lines (53 loc) · 1.51 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
[build-system]
requires = ["setuptools", "cython"]
build-backend = "setuptools.build_meta"
[project]
name = "pycddlib"
version = "3.0.3a0"
requires-python = ">=3.9"
authors = [
{name = "Matthias C. M. Troffaes", email = "matthias.troffaes@gmail.com"},
]
description = "A Python wrapper for cddlib"
readme = "README.rst"
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Mathematics",
"Programming Language :: C",
"Programming Language :: Cython",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
keywords = ["convex, polyhedron, linear programming, double description method"]
[project.optional-dependencies]
test = [
"pytest",
"numpy",
"gmpy2",
"mypy",
"black",
"isort",
"flake8",
]
doc = [
"sphinx",
]
[project.urls]
Homepage = "https://github.com/mcmtroffaes/pycddlib"
Documentation = "https://pycddlib.readthedocs.io/"
Repository = "https://github.com/mcmtroffaes/pycddlib.git"
Issues = "https://github.com/mcmtroffaes/pycddlib/issues"
Changelog = "https://github.com/mcmtroffaes/pycddlib/blob/develop/CHANGELOG.rst"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
cdd = ["py.typed"]
[tool.mypy]
files = ["src/**/*.pyi", "test/**/*.py", "docs/**/*.py"]
disallow_untyped_defs = true
[[tool.mypy.overrides]]
module = "gmpy2"
ignore_missing_imports = true