-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
46 lines (41 loc) · 1.33 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
[tool.poetry]
name = "auem"
version = "0.1.0"
description = "Module for exploring audio embeddings"
authors = ["Konstantinos Dimitriou", "Christopher Jacoby"]
[tool.poetry.dependencies]
python = "3.9"
poethepoet = "^0.13.1"
hydra-core = "^1.1.1"
pytorch-lightning = "^1.5.10"
nnAudio = "^0.3.1"
pescador = "^2.1.0"
GitPython = "^3.1.34"
aim = "^3.7.2"
pandas = "^1.4.1"
librosa = "^0.9.1"
torchmetrics = "^0.7.2"
webencodings = "^0.5.1"
distlib = "^0.3.4"
pexpect = "^4.8.0"
platformdirs = "^2.5.1"
ptyprocess = "^0.7.0"
virtualenv = "^20.13.3"
setuptools = "^59.5.0"
[tool.poe.tasks]
## PyTorch with CUDA 11.3. If PyTorch is imported first, importing Tensorflow will detect CUDA + cuDNN bundled with PyTorch
## Run with the command "poe force-cuda11"
## See https://github.com/python-poetry/poetry/issues/2543
force-cuda11 = "pip install torch==1.10.2+cu113 torchvision==0.11.3+cu113 torchaudio==0.10.2+cu113 -f https://download.pytorch.org/whl/torch_stable.html"
force-nocuda = "pip install torch==1.10.2 torchvision==0.11.3 torchaudio==0.10.2 -f https://download.pytorch.org/whl/torch_stable.html"
[tool.poetry.dev-dependencies]
mypy = "^0.931"
isort = "^5.10.1"
pre-commit = "^2.17.0"
black = "^22.1.0"
pytest = "^7.0.1"
ipython = "^8.1.1"
jupyter = "^1.0.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"