-
Notifications
You must be signed in to change notification settings - Fork 18
/
pyproject.toml
35 lines (31 loc) · 1020 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 = "diffusion_avatars"
version = "0.0.1"
description = "Official implementation of CVPR'24 paper 'Diffusion Avatars: Deferred Diffusion for High-fidelity 3D Head Avatars'"
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"
]
# urls = { Documentation = "<<<ENTER_LINK_TO_DOCUMENTATION>>>" }
# 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 = ["diffusion_avatars*"] # Keep the '*', otherwise submodules are not found