-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
89 lines (78 loc) · 2.16 KB
/
pyproject.toml
File metadata and controls
89 lines (78 loc) · 2.16 KB
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
[build-system]
requires = ["setuptools >= 61.0", "wheel", "setuptools_scm[toml]"]
build-backend = "setuptools.build_meta"
[project]
name = "oceanpy"
dynamic = ["version"]
description = "A simple Python package Optimal Counterfactual Explanations in Tree Ensembles"
readme.content-type = "text/markdown"
readme.file = "README.md"
requires-python = ">=3.12"
license = {file = "LICENSE"}
authors = [
{ name = "Youssouf Emine", email = "youssouf.emine@polymtl.ca" },
{ name = "Awa Khouna", email = "awa.khouna@polymtl.ca" },
{ name = "Julien Ferry", email = "julien.ferry@polymtl.ca" },
{ name = "Thibaut Vidal", email = "thibaut.vidal@polymtl.ca" },
{ name = "Alexandre Forel", email = "alexandre.forel@polymtl.ca"}
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Topic :: Software Development :: Libraries",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3 :: Only",
]
dependencies = [
"anytree",
"gurobipy",
"numpy",
"ortools==9.14.6206",
"pandas",
"pydantic",
"python-sat[pblib,aiger]; platform_system != 'Windows'",
"python-sat; platform_system == 'Windows'",
"scikit-learn",
"xgboost",
]
optional-dependencies.dev = [
"coverage",
"mypy",
"pandas-stubs",
"pyright",
"pytest",
"pytest-cov",
"ruff",
"scipy-stubs",
"tox",
]
optional-dependencies.test = [
"coverage",
"mypy",
"pandas-stubs",
"pyright",
"pytest",
"pytest-cov",
"python-sat[pblib,aiger]; platform_system != 'Windows'",
"python-sat; platform_system == 'Windows'",
"ruff",
"scipy-stubs",
"tox",
]
optional-dependencies.example = [
"rich",
"matplotlib",
]
optional-dependencies.docs = [
"sphinx>=8,<9",
"sphinx-rtd-theme>=3,<4",
]
urls.Homepage = "https://github.com/vidalt/OCEAN"
urls.Repository = "https://github.com/vidalt/OCEAN"
urls.Issues = "https://github.com/vidalt/OCEAN/issues"
[tool.setuptools_scm]
[tool.pyproject-fmt]
max_supported_python = "3.13"