-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
71 lines (61 loc) · 1.74 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
[build-system]
requires = ["setuptools>=61", "build", "wheel", "torch==2.5.1"]
build-backend = "setuptools.build_meta"
[project]
name = "warpconvnet"
requires-python = ">=3.9"
description = "3D Point Cloud and Spatially Sparse Convolutional Networks Framework"
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: Other/Proprietary License",
"Operating System :: OS Independent",
]
dependencies = ["numpy", "torch", "warp-lang>=1.6.2", "jaxtyping", "torch-scatter"]
dynamic = ["version"]
[project.urls]
GitLab = "https://gitlab.nvidia.com/3dmmllm/warpconvnet"
Documentation = "https://gitlab.nvidia.com/3dmmllm/warpconvnet/docs"
[project.optional-dependencies]
dev = [
"ipdb",
"pre-commit",
"pytest>=7.4.0",
"pytest-benchmark>=4.0.0",
"pytest-cov>=4.1.0",
]
docs = [
"mkdocs>=1.4.0",
"mkdocs-material>=9.0.0",
"mkdocstrings[python]>=0.20.0",
"pymdown-extensions>=9.0.0",
]
models = [
"h5py",
"wandb",
"hydra-core",
"omegaconf",
"pytorch-lightning",
"torchmetrics",
]
all = [
"warpconvnet[dev]",
"warpconvnet[docs]",
"warpconvnet[models]",
]
[project.scripts]
warpconvnet-docs = "scripts.serve_docs:serve_docs"
warpconvnet-build-docs = "scripts.build_docs:build_docs"
[tool.setuptools.packages.find]
include = ["warpconvnet*", "scripts*"]
[tool.setuptools.dynamic]
version = { file = ["VERSION.md"] }
readme = { file = ["README.md"], content-type = "text/markdown" }
[tool.pytest.ini_options]
markers = [
"benchmark: mark test as a performance benchmark",
"slow: mark test as slow to run",
]