forked from coin-or/python-mip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
53 lines (46 loc) · 1.67 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "mip"
description = "Python tools for Modeling and Solving Mixed-Integer Linear Programs (MIPs)"
readme = "README.md"
requires-python = ">=3.7,<3.12"
license = {file = "LICENSE"}
authors = [
{name="T.A.M. Toffolo", email="haroldo.santos@gmail.com"},
{name="H.G. Santos", email="tulio@toffolo.com.br"}
]
maintainers = [
{name="S. Heger", email="heger@m2p.net"}
]
keywords = [
"Optimization",
"Linear Programming",
"Integer Programming",
"Operations Research",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: Eclipse Public License 2.0 (EPL-2.0)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Scientific/Engineering :: Mathematics"
]
dynamic = ["version"]
dependencies = ["cffi==1.15.*"]
[project.optional-dependencies]
numpy = ["numpy==1.24.*; python_version >= '3.8'", "numpy==1.21.6; python_version == '3.7'"]
gurobi = ["gurobipy>=8"]
test = ["pytest==7.2.0", "networkx==2.8.8; python_version >= '3.8'", "networkx==2.6.3; python_version == '3.7'", "matplotlib==3.6.2; python_version >= '3.8'", "matplotlib==3.5.3; python_version == '3.7'"]
[project.urls]
"Homepage" = "https://www.python-mip.com"
"Repository" = "https://github.com/coin-or/python-mip"
[tool.setuptools]
packages = ["mip"]
[tool.setuptools.package-data]
"mip.libraries" = ["*.so", "*.dylib", "*.dll"]
[tool.setuptools_scm]
write_to = "mip/_version.py"