forked from Gurobi/gurobi-optimods
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
46 lines (42 loc) · 1.09 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "gurobi-optimods"
description = "Data-driven APIs for common optimization tasks"
readme = "README.md"
requires-python = ">=3.8"
license = "Apache-2.0"
keywords = ["optimization", "gurobipy", "pandas", "scipy"]
authors = [
{ name = "Simon Bowly", email = "[email protected]" },
{ name = "Robert Luce", email = "[email protected]" },
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Operating System :: OS Independent",
]
dependencies = [
"gurobipy>=10.0.1",
"gurobipy-pandas>=1.0.0",
"numpy",
"pandas",
"scipy>=1.8.0",
]
dynamic = ["version"]
[project.optional-dependencies]
examples = [
"matplotlib",
"networkx",
"plotly",
"scikit-learn"
]
[tool.hatch.version]
path = "src/gurobi_optimods/__init__.py"
[tool.isort]
profile = "black"