forked from sxyu/svox2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
37 lines (33 loc) · 825 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
[tool.poetry]
name = "plenoxels"
version = "0.1.0"
description = ""
authors = ["Pol Francesch"]
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.10,<3.13"
torch = {version="^2.1.1", "source"="torch"}
numpy = "^1.26.2"
scipy = "^1.11.3"
matplotlib = "^3.8.1"
tqdm = "^4.66.1"
torchvision = {version="^0.16.1", "source"="torch"}
torchaudio = {version="^2.1.1", "source"="torch"}
ipdb = "^0.13.13"
lpips = "^0.1.4"
opencv-python = "^4.8.1.78"
pyyaml = "^6.0.1"
tensorboard = "^2.15.1"
pymcubes = "^0.1.4"
moviepy = "^1.0.3"
imageio = "^2.32.0"
imageio-ffmpeg = "^0.4.9"
pillow = ">=8.3.2,<10.1.0"
setuptools = "^68.2.2"
[[tool.poetry.source]]
name = "torch"
url = "https://download.pytorch.org/whl/cu118"
priority = "explicit"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"