-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (37 loc) · 838 Bytes
/
pyproject.toml
File metadata and controls
41 lines (37 loc) · 838 Bytes
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
36
37
38
39
40
41
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "NICE"
version = "0.0.1"
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 = [
'trimesh',
'pymcubes',
'pyyaml',
'pyrender',
'point_cloud_utils',
'Pillow',
'numpy',
'tyro',
'scipy',
'pyvista',
'chardet'
]
[project.optional-dependencies]
# Development packages
dev = [
]
[project.scripts]
# E.g., ns-download-data = "scripts.downloads.download_data:entrypoint"
[tool.setuptools.packages.find]
where = ["src"]
include = ["NICE*"] # Keep the '*', otherwise submodules are not found