-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
49 lines (45 loc) · 1.28 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
[tool.poetry]
name = "nianetcae"
version = "0.1.0"
description = "Nature-Inspired Algorithm-driven Convolutional Autoencoder Architecture search: Empowered by High-Performance Computing (HPC)"
authors = ["Saso Pavlic"]
license = "MIT Licence"
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.10,<3.12"
setuptools = "^67.8.0"
pyyaml = "^6.0"
#torch = "^2.0.1"
#poethepoet = "*"
torch = "*"
poethepoet = "*"
torchvision = "^0.15.2"
numpy = "^1.24.3"
torchmetrics = "^0.11.4"
tabulate = "^0.9.0"
pandas = "^2.0.1"
scipy = "^1.10.1"
scikit-learn = "^1.2.2"
matplotlib = "^3.7.1"
niapy = "^2.0.5"
lightning = "^2.0.2"
pillow = "^9.5.0"
tensorboard = "^2.13.0"
pytest = "^7.3.1"
colorama = "^0.4.6"
deap = "^1.3.3"
jupyter = "^1.0.0"
pymannkendall = "^1.4.3"
mk = "^2.4.1"
seaborn = "^0.13.0"
plotly = "^5.18.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
# Manual installation of Torch when using Poetry
# https://github.com/python-poetry/poetry/issues/4231#issuecomment-1182766775
# Change "python" call based on your system e.g.(python3, python3.10,...)
[tool.poe.tasks]
install-ltt = "python -m pip install light-the-torch"
run-ltt = "python -m light_the_torch install --upgrade torch torchaudio torchvision"
autoinstall-torch-cuda = ["install-ltt", "run-ltt"]