forked from google-research/augmix
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
34 lines (30 loc) · 856 Bytes
/
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
[tool.poetry]
name = "augmix-refactored"
version = "0.1.0"
description = "A refactored version of the original augmix project."
authors = ["Jan Philipp Schneider <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
packages = [{include = "augmix_refactored"}]
[tool.poetry.dependencies]
python = ">=3.8,<3.10"
numpy = "^1.24.2"
Pillow = "^9.4.0"
torch = {version=">1.0", optional=true}
torchvision = {version=">0.14", optional=true}
typing-inspect = "^0.8.0"
simple-parsing = "^0.0.21.post1"
pyyaml = "^6.0"
tqdm = "^4.64.1"
[tool.poetry.extras]
torch = ["torch", "torchvision"]
[tool.poetry.group.dev.dependencies]
ipykernel = "^6.21.1"
ipdb = "^0.13.11"
pytest = "7.1.2"
pylint = "^2.13.3"
pycodestyle = "^2.8.0"
autopep8 = "^1.6.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"