forked from graphdeco-inria/diff-gaussian-rasterization
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (35 loc) · 1.23 KB
/
Copy pathpyproject.toml
File metadata and controls
40 lines (35 loc) · 1.23 KB
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
[build-system]
requires = ["setuptools>=61.0", "wheel", "torch>=1.8"]
build-backend = "setuptools.build_meta"
[project]
name = "diff_gaussian_rasterization"
dynamic = ["version"]
description = "Differentiable Gaussian Rasterization for Python with CUDA support"
readme = "README.md"
requires-python = ">=3.10"
license-files = ["LICENSE.md"]
authors = [
{ name = "George Drettakis", email = "george.drettakis@inria.fr" },
{ name = "Oleg Sémery", email = "osemery@gmail.com" },
]
urls = { Homepage = "https://github.com/osmr/diff-gaussian-rasterization" }
keywords = ["gaussian splatting", "3dgs", "3d reconstruction", "image processing", "CUDA"]
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Image Processing',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
]
dependencies = [
"torch>=1.8",
]
[tool.wheel]
universal = true
[tool.setuptools.dynamic]
version = {attr = "diff_gaussian_rasterization.__version__"}
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
exclude = ["others", "*.others", "others.*", "*.others.*"]