-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpyproject.toml
44 lines (39 loc) · 1.1 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
[project]
name = "pycombina"
version = "0.3.4"
authors = [
{ name="Adrian Bürger", email="[email protected]" },
{ name="Clemens Zeile", email="[email protected]" },
]
description = "Python module for solving Combinatorial Integral Approximation problems"
readme = "README.rst"
requires-python = ">= 3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Operating System :: OS Independent",
]
dependencies = [
"numpy>=1.13"
]
[project.urls]
"Homepage" = "https://github.com/adbuerger/pycombina"
"Bug Tracker" = "https://github.com/adbuerger/pycombina/issues"
"Documentation" = "https://pycombina.readthedocs.org"
[project.optional-dependencies]
milp = ["gurobipy>=8.0.0"]
dev = ["pytest"]
[build-system]
requires = ["setuptools>=42", "pybind11>=2.10.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
include = ["pycombina*"]
exclude = ["combina_bnb_solver*"]
namespaces = false
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q"
testpaths = [
"test",
]