-
Notifications
You must be signed in to change notification settings - Fork 9
/
pyproject.toml
35 lines (30 loc) · 944 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "nersemble"
version = "0.0.1"
description = "Official implementation of the Siggraph '23 paper 'NeRSemble: Multi-view Radiance Field Reconstruction of Human Heads'"
authors = [
{ name = "Tobias Kirschstein", email = "[email protected]" },
]
readme = "README.md"
license = { text = "Apache 2.0" }
requires-python = ">=3.8.0"
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent"
]
# Main dependencies
dependencies = [
]
[project.optional-dependencies]
# Development packages, install via <<<PROJECT_NAME>>>[dev]
dev = [
]
[project.scripts]
# E.g., ns-download-data = "scripts.downloads.download_data:entrypoint"
[tool.setuptools.packages.find]
where = ["src"]
include = ["nersemble*"] # Keep the '*', otherwise submodules are not found