-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (45 loc) · 1.13 KB
/
pyproject.toml
File metadata and controls
49 lines (45 loc) · 1.13 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
[tool.poetry]
name = "datasail"
version = "1.3.0"
repository = "https://github.com/kalininalab/DataSAIL"
readme = "README.md"
description = "A package to compute hard out-of-distribution data splits for machine learning, challenging generalization of models."
authors = ["Roman Joeres <roman.joeres@helmholtz-hips.de>"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
]
[tool.poetry.dependencies]
python = ">=3.9, <3.13.0"
numpy = "<2"
pandas = "*"
networkx = "*"
matplotlib = "*"
pyscipopt = "*"
scip = "<=9.1"
scikit-learn = "*"
cvxpy = "==1.5.3"
rdkit = "*"
pyyaml = "*"
cvxopt = "*"
h5py = "*"
pyarrow = "*"
tqdm = "*"
grakel = "<0.1.10"
importlib_resources = "*"
[tool.poetry.dev-dependencies]
setuptools = "*"
pytest = "*"
pytest-cov = "*"
notebook = "^6.4.12"
sphinx-rtd-theme = "^1.0.0"
nbsphinx = "==0.8.9"
nbsphinx-link = "==1.3.0"
myst-parser = "*"
[tool.poetry.scripts]
glyles = "datasail.sail:sail"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"