pyproject.toml 714 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"
Ethan Weber's avatar
Ethan Weber committed
7
version = "0.0.5"
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
license = { text="MIT" }
requires-python = ">=3.8"
dependencies = [
    "ninja>=1.10.2.3",
    "pybind11>=2.10.0",
Matt Tancik's avatar
Matt Tancik committed
14
15
    "torch>=1.12.1",
    "rich>=12"
Matt Tancik's avatar
Matt Tancik committed
16
17
18
19
]

[project.optional-dependencies]
# for documentation
Matt Tancik's avatar
Matt Tancik committed
20
21
22
23
docs = [
    "furo==2022.4.7",
    "sphinx==4.5.0",
    "sphinx-copybutton==0.5.0",
24
25
26
    "sphinx-design==0.2.0",
    "pytorch_sphinx_theme @ git+https://github.com/liruilong940607/pytorch_sphinx_theme.git#egg=pytorch_sphinx_theme",
    "sphinx_copybutton"
Ruilong Li's avatar
fix doc  
Ruilong Li committed
27
28
29
30
31
32
]

# for development
dev = [
    "black",
    "isort",
Matt Tancik's avatar
Matt Tancik committed
33
]