-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (48 loc) · 1.28 KB
/
Copy pathpyproject.toml
File metadata and controls
57 lines (48 loc) · 1.28 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
[tool.poetry]
name = "code"
version = "0.1.0"
description = "Replication Package for the Green Compiled Python Project"
authors = ["Vincenzo Stoico <v.stoico@vu.nl>", "Andrei Calin Dragomir <a.dragomir@student.vu.nl>"]
license = "CC-BY"
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.10,<=3.13"
setuptools = "^75.4.0"
line-profiler = "^4.1.3"
[tool.poetry.group.experiment]
optional = true
[tool.poetry.group.experiment.dependencies]
numba = "^0.60.0"
nuitka = "^2.5.6"
cython = "^3.0.11"
pyston-lite-autoload = "^2.3.5"
mypy = {extras = ["mypyc"], version = "^1.13.0"}
[tool.poetry.group.orchestration]
optional = true
[tool.poetry.group.orchestration.dependencies]
scp = "^0.15.0"
paramiko = "^3.5.0"
python-dotenv = "^1.0.1"
pandas = "^2.2.3"
psutil = "^6.1.0"
tabulate = "^0.9.0"
dill = "^0.3.9"
jsonpickle = "^4.0.0"
[tool.poetry.group.data_analysis]
optional = true
[tool.poetry.group.data_analysis.dependencies]
seaborn = "^0.13.2"
matplotlib = "^3.9.3"
pandas = "^2.2.3"
notebook = "^7.3.1"
ipykernel = "^6.29.5"
jupyterlab = "^4.3.3"
ipython = "^8.30.0"
nbconvert = "^7.16.4"
numpy = "^1.26"
scipy = "^1.14.1"
[tool.poetry.group.dev.dependencies]
ipykernel = "^6.29.5"
[build-system]
requires = ["poetry-core", "setuptools", "Cython"]
build-backend = "poetry.core.masonry.api"