-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (44 loc) · 1.5 KB
/
Copy pathpyproject.toml
File metadata and controls
49 lines (44 loc) · 1.5 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
47
48
49
[build-system]
requires = ["setuptools>=77"]
build-backend = "setuptools.build_meta"
[project]
name = "solarwm-data"
version = "0.1.0"
description = "Camera-annotation data engine for camera-controllable video world models"
readme = "README.md"
license = "Apache-2.0"
license-files = ["LICENSE", "NOTICE"]
requires-python = ">=3.10"
keywords = ["world-model", "camera-control", "video", "dataset", "slam", "3dgs"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"numpy>=1.24",
"pyyaml>=6.0",
]
[project.optional-dependencies]
# Heavy / GPU deps for real (non-dry-run) execution. Kept optional so the
# orchestration layer and camera math install without a GPU stack.
full = [
"opencv-python>=4.8",
"scipy>=1.10",
"imageio[ffmpeg]>=2.31",
"scenedetect>=0.6",
"huggingface-hub>=0.24",
"requests>=2.31",
"boto3>=1.34", # the S3 corpus backend, and scripts/export_recipe.py
]
# The Tencent COS backend. Separate because it is the only backend that needs a
# vendor SDK; `local` and `s3` are covered by `full`.
cos = ["cos-python-sdk-v5>=1.9"]
[project.scripts]
solarwm-pipeline = "solar_wm_data.driver:main"
[tool.setuptools.packages.find]
include = ["solar_wm_data*"]