This repository was archived by the owner on Sep 24, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
76 lines (67 loc) · 1.76 KB
/
pyproject.toml
File metadata and controls
76 lines (67 loc) · 1.76 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
[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" }
]
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.12",
"pandas",
"pydantic",
"scikit-learn",
]
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",
"ruff",
"scipy-stubs",
"tox",
]
optional-dependencies.example = [
"rich",
]
urls.Homepage = "https://github.com/eminyous/ocean"
urls.Repository = "https://github.com/eminyous/ocean"
urls.Issues = "https://github.com/eminyous/ocean/issues"
[tool.setuptools_scm]
[tool.pyproject-fmt]
max_supported_python = "3.13"