-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
54 lines (51 loc) · 1.68 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
54
[tool.poetry]
name = "py-experimenter"
version = "1.4.2"
description = "The PyExperimenter is a tool for the automatic execution of experiments, e.g. for machine learning (ML), capturing corresponding results in a unified manner in a database."
authors = [
"Tanja Tornede <[email protected]>",
"Alexander Tornede <[email protected]>",
"Lukas Fehring <[email protected]>",
"Lukas Gehring",
"Helena Graf <[email protected]>",
"Jonas Hanselle <[email protected]>",
"Marcel Wever <[email protected]>",
"Felix Mohr <[email protected]>"
]
license = "MIT"
readme = "README.md"
documentation = "https://tornede.github.io/py_experimenter/"
repository = "https://github.com/tornede/py_experimenter"
packages = [{include = "py_experimenter"}]
keywords = ["python", "experiments", "database", "executor"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9"
]
[tool.poetry.dependencies]
python = "^3.9"
numpy = ">=1.15"
pandas = ">=1.0"
jupyterlab = "^3.5.0"
joblib = "^1.2.0"
codecarbon = ">=2.2.1"
pymysql = "^1.0.3"
omegaconf = "^2.3.0"
sshtunnel = "^0.4.0"
[tool.poetry.group.dev.dependencies]
pytest = ">=7.0"
mock = ">=4.0"
sphinx = ">=5.0"
nbsphinx = "^0.8.9"
sphinx-gallery = "^0.11.1"
sphinx-autoapi = ">=2.0.0"
sphinx-rtd-theme = ">=1.0.0"
recommonmark = "^0.7.1"
freezegun = "^1.2.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"