-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
32 lines (29 loc) · 1.09 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.poetry]
name = "dynamicdl"
version = "0.1.1-alpha-1"
description = "A PyTorch-based dynamic dataloading library"
authors = ["Anthony Tong <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
homepage = "https://esb-ai-lab.github.io/DynamicDL"
repository = "https://github.com/ESB-AI-Lab/DynamicDL"
include = [{ path = "dynamicdl/config.json", format = ["sdist", "wheel"] }]
[tool.poetry.dependencies]
python = ">=3.9"
opencv-python = { version = ">=4.6.0,<=4.9.0.80" }
Pillow = { version = ">=8.0.0,<=10.3.0" }
PyYAML = { version = ">=5.4.0,<=6.0.1" }
tqdm = { version = ">=4.1.0,<=4.66.2" }
numpy = { version = ">=1.18.0,<2.0.0" }
pandas = { version = ">=1.0.0,<=2.2.2" }
torch = { version = ">=2.0.0,<=2.3.0" }
torchvision = { version = ">=0.15.1,<=0.18.0" }
typing-extensions = { version = ">=4.0.0,<=4.11.0" }
xmltodict = { version = ">=0.12.0,<=0.13.0" }
jsonpickle = { version = ">=3.0.0,<=3.1.0" }
matplotlib = { version = ">=3.6.0,<=3.8.4" }
[tool.poetry.dev-dependencies]
pytest = "^6.2.5"