-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpyproject.toml
91 lines (82 loc) · 2.15 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
[build-system]
requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "odtlearn"
description = "A package for tree-based statistical estimation and inference using optimal decision trees."
readme = "README.md"
requires-python = ">=3.8"
license = { file = "LICENSE" }
authors = [
{ name = "Patrick Vossler" },
{ name = "Sina Aghaei" },
{ name = "Nathan Justin" },
{ name = "Nathanael Jo" },
]
maintainers = [
{ name = "Patrick Vossler", email = "patrick.vossler18@gmail.com" },
]
keywords = [
"Optimization",
"Mixed Integer Programming",
"Optimal Decision Trees",
"Integer Programming",
"Operations Research",
]
classifiers = [
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved",
"Programming Language :: Python",
"Topic :: Software Development",
"Topic :: Scientific/Engineering",
"Operating System :: Unix",
"Operating System :: MacOS",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
]
dependencies = [
"cffi>=1.15",
"mip>=1.15",
"scikit-learn>=1.2",
"numpy>=1.23",
"pandas>=1.5",
"seaborn>=0.13.2",
"matplotlib>=3.5.3",
]
dynamic = ["version"]
[project.optional-dependencies]
docs = [
"sphinx",
"sphinx-autoapi",
"furo",
"lxml",
"sphinx_math_dollar",
"myst-parser",
"nbconvert>=6.5.3",
"nbsphinx>=0.9.3",
"sphinx-copybutton>=0.5.2",
"sphinx-gallery>=0.14.0",
"sphinx-prompt>=1.7.0",
"numpydoc>=1.6.0",
"myst-parser>=2.0.0",
]
test = ["pytest>=7.4", "gurobipy>=10.0.0"]
[project.urls]
"Homepage" = "https://d3m-research-group.github.io/odtlearn/"
"Repository" = "https://github.com/D3M-Research-Group/odtlearn"
[tool.setuptools.packages.find]
where = ["."]
include = ["odtlearn*"]
[tool.setuptools.package-data]
odtlearn = [
"data/*.csv",
"data/*.npz",
"data/prescriptive/test_v2_200.csv",
"data/prescriptive/train_v2_100.csv",
"data/prescriptive/train_50.csv",
]
[tool.setuptools_scm]
write_to = "odtlearn/_version.py"
[tool.isort]
profile = "black"