-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
53 lines (48 loc) · 1.18 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
[tool.poetry]
name = "codes"
version = "0.1.0"
description = "Benchmarking tool for neural (chemical) ODE surrogate models"
authors = ["Robin Janssen <[email protected]>", "Immanuel Sulzer"]
license = "GPL-3.0"
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)"
]
[tool.poetry.dependencies]
python = "^3.10"
numpy = "^1.26.4"
h5py = "^3.9.0"
matplotlib = "^3.8.4"
PyYAML = "^6.0.1"
scipy = "^1.14.1"
tabulate = "^0.9.0"
torch = "^2.3.0"
torchode = "0.2.0"
tqdm = "^4.66.4"
schedulefree = "^1.4"
optuna = "^4.1.0"
sqlalchemy = "^2.0.37"
psycopg2-binary = "^2.9.10"
optuna-dashboard = "^0.17.0"
[tool.poetry.group.dev.dependencies]
black = "^24.8.0"
isort = "^5.13.2"
pre-commit = "^3.8.0"
pytest = "^8.3.3"
pytest-cov = "^4.0.0"
sphinx = "8.0.2"
sphinx-book-theme = "1.1.3"
sphinxcontrib-napoleon = "^0.7"
sphinx-autodoc-typehints = "2.5.0"
[tool.pytest.ini_options]
testpaths = [
"test"
]
pythonpath = "."
python_functions = "test_*"
python_classes = "Test*"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"