-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
62 lines (56 loc) · 1.42 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 = [
"setuptools>=61.2",
"Cython",
"cysignals",
"gmpy2>=2.1.0b1",
]
build-backend = "setuptools.build_meta"
[project]
name = "pplpy"
description = "Python PPL wrapper"
readme = "README.rst"
authors = [{name = "Vincent Delecroix", email = "[email protected]"}]
license = {text = "GPL v3"}
classifiers = [
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: C++",
"Programming Language :: Python",
"Development Status :: 5 - Production/Stable",
"Operating System :: Unix",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
keywords = [
"polyhedron",
"polytope",
"convex",
"mathematics",
"ppl",
"milp",
"linear-programming",
]
dependencies = [
"cysignals",
"gmpy2>=2.1.0b1",
]
dynamic = ["version"]
[project.optional-dependencies]
doc = [
"sphinx",
]
[project.urls]
Homepage = "https://github.com/sagemath/pplpy"
Download = "https://pypi.org/project/pplpy/#files"
[tool.setuptools]
packages = ["ppl"]
platforms = ["any"]
include-package-data = false
[tool.setuptools.dynamic]
version = {attr = "ppl.__version__"}
[tool.setuptools.package-data]
ppl = ["*.pxd", "*.h", "*.hh"]