-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
39 lines (35 loc) · 1010 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
35
36
37
38
39
[tool.poetry]
name = "deforumed-walk"
version = "0.1.0"
description = "Take a walk in generated world."
authors = ["IzumiSatoshi <[email protected]>"]
license = "MIT"
readme = "README.md"
packages = [{include = "src"}]
[tool.poetry.dependencies]
python = "^3.10"
numpy = "^1.24.1"
torch = {url="https://download.pytorch.org/whl/cu117/torch-1.13.0%2Bcu117-cp310-cp310-win_amd64.whl"}
torchvision = {url="https://download.pytorch.org/whl/cu117/torchvision-0.14.0%2Bcu117-cp310-cp310-win_amd64.whl"}
opencv-python = "^4.7.0.68"
timm = "^0.6.12"
einops = "^0.6.0"
numpngw = "^0.1.2"
matplotlib = "^3.6.3"
py3d = "^0.0.70"
sympy = "^1.11.1"
pygame = "^2.1.2"
diffusers = "^0.11.1"
accelerate = "^0.15.0"
transformers = "^4.25.1"
scikit-image = "^0.19.3"
mmcv = "^1.7.1"
albumentations = "^1.3.0"
tensorboardx = "^2.5.1"
gdown = "^4.6.0"
tensorboard = "^2.11.2"
[tool.poetry.group.dev.dependencies]
ipykernel = "^6.20.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"