-
Notifications
You must be signed in to change notification settings - Fork 15
/
pyproject.toml
42 lines (38 loc) · 1.24 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "gurobipy-pandas"
description = "Pandas accessors for gurobipy interaction"
readme = "README.md"
requires-python = ">=3.8"
license = "Apache-2.0"
keywords = ["optimization", "gurobipy", "pandas"]
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",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
"Programming Language :: Python :: Implementation :: CPython",
]
dependencies = [
"gurobipy>=9.1",
"pandas>=1.0",
]
dynamic = ["version"]
[project.urls]
Documentation = "https://gurobi-optimization-gurobipy-pandas.readthedocs-hosted.com/en/latest"
Issues = "https://github.com/Gurobi/gurobipy-pandas/issues"
Source = "https://github.com/Gurobi/gurobipy-pandas"
[tool.hatch.version]
path = "src/gurobipy_pandas/__init__.py"
[tool.isort]
profile = "black"