-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (34 loc) · 1.15 KB
/
pyproject.toml
File metadata and controls
39 lines (34 loc) · 1.15 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
[build-system]
requires = ["scikit-build-core>=0.10", "nanobind>=2.0"]
build-backend = "scikit_build_core.build"
[project]
name = "msplat"
version = "1.1.3"
description = "Metal-accelerated 3D Gaussian Splatting for Apple Silicon"
readme = "README.md"
license = "Apache-2.0"
requires-python = ">=3.12"
dependencies = ["numpy"]
authors = [{ name = "Rayan Hatout" }]
keywords = ["gaussian-splatting", "3dgs", "metal", "apple-silicon", "nerf"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Operating System :: MacOS",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Multimedia :: Graphics :: 3D Rendering",
]
[project.urls]
Homepage = "https://github.com/rayanht/msplat"
Repository = "https://github.com/rayanht/msplat"
Issues = "https://github.com/rayanht/msplat/issues"
[project.optional-dependencies]
cli = ["tyro"]
[project.scripts]
msplat-train = "msplat.cli:main"
[tool.scikit-build]
cmake.build-type = "Release"
cmake.args = ["-DMSPLAT_BUILD_PYTHON=ON"]
wheel.packages = ["python/msplat"]