"megatron/vscode:/vscode.git/clone" did not exist on "b03af49e1df44e662f77c0081ca72621d0576ab9"
pyproject.toml 690 Bytes
Newer Older
Matt Tancik's avatar
Matt Tancik committed
1
2
3
4
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"

Ruilong Li's avatar
docs  
Ruilong Li committed
5
6
[project]
name = "nerfacc"
Matt Tancik's avatar
Matt Tancik committed
7
version = "0.0.3"
Ruilong Li's avatar
docs  
Ruilong Li committed
8
authors = [{name = "Ruilong", email = "ruilongli94@gmail.com"}]
Matt Tancik's avatar
Matt Tancik committed
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
license = { text="MIT" }
requires-python = ">=3.8"
dependencies = [
    "ninja>=1.10.2.3",
    "pybind11>=2.10.0",
    "torch>=1.12.1"
]

[project.optional-dependencies]
# for example scripts
examples = [
    "tinycudann @ git+https://github.com/NVlabs/tiny-cuda-nn/#subdirectory=bindings/torch",
    "opencv-python",
    "imageio",
    "numpy",
    "tqdm",
]

# for documentation
Matt Tancik's avatar
Matt Tancik committed
28
29
30
31
32
33
docs = [
    "furo==2022.4.7",
    "sphinx==4.5.0",
    "sphinx-copybutton==0.5.0",
    "sphinx-design==0.2.0"
]