-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
53 lines (49 loc) · 1.39 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
[build-system]
requires = ["setuptools >= 68.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "avicenna"
version = "0.9.3"
authors = [
{ name = "Martin Eberlein", email = "[email protected]" },
]
readme = "README.md"
classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Testing"
]
keywords = [ "debugging"]
requires-python = ">=3.10"
dependencies = [
"shap>=0.45",
"lightgbm>=4.3.0",
"pandas>=2.1.0",
"numpy>=1.23.2",
"scikit-learn>=1.1.2",
"returns>=0.22.0",
"jupyter",
"isla-solver~=1.14.4",
"psutil~=5.9.6",
"tests4py @ git+https://github.com/martineberlein/Tests4Py",
"islearn @ git+https://github.com/martineberlein/islearn.git",
"debugging_benchmark @ git+https://github.com/martineberlein/debugging-benchmark.git@stable",
"docker~=7.1.0",
# "z3-solver>=4.13",
]
[project.urls]
"Homepage" = "https://github.com/martineberlein/avicenna"
"Bug Tracker" = "https://github.com/martineberlein/avicenna/issues"
[project.optional-dependencies]
dev = [
"twine",
"black",
"pytest>=7.2.2",
"pytest-cov>=4.1.0",
"pytest-html>=3.2.0",
]
[tool.setuptools.package-data]
"avicenna" = ["resources/*"]