pyproject.toml 587 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
28
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
docs = []