-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (36 loc) · 1.05 KB
/
pyproject.toml
File metadata and controls
46 lines (36 loc) · 1.05 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
41
42
43
44
45
46
[build-system]
requires = ["setuptools>=69", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "mini-viewer"
version = "0.3.0"
description = "Realtime Gaussian splat viewer with CPU/CUDA rendering, SigLIP2/CLIP/DINOv2 querying, bbox export, and camera-path video rendering."
readme = "README.md"
requires-python = ">=3.10,<3.12"
authors = [{ name = "Mini Viewer contributors" }]
dependencies = []
[project.optional-dependencies]
dev = [
"pytest>=8",
"ruff>=0.6",
"tomli>=2.0",
"pyyaml>=6.0",
]
[project.scripts]
mini-viewer = "run_viewer:main"
[tool.setuptools]
py-modules = ["run_viewer", "data_loader"]
[tool.setuptools.packages.find]
include = ["actions*", "core*", "models*", "utils*"]
exclude = ["data*", "docs*", "outputs*", "scripts*", "tests*"]
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "I", "B", "UP", "SIM"]
ignore = ["E501"]
[tool.ruff.lint.isort]
known-first-party = ["actions", "core", "models", "utils", "viser_bbox"]
[tool.pytest.ini_options]
pythonpath = ["."]
addopts = "-ra"