-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (33 loc) · 939 Bytes
/
Copy pathpyproject.toml
File metadata and controls
38 lines (33 loc) · 939 Bytes
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
[project]
name = "scenesmith-retrieval"
version = "0.1.0"
description = "Self-contained SceneSmith retrieval services and compatibility API for 3DSceneAgent."
readme = "README.md"
requires-python = ">=3.11, <3.13"
dependencies = [
"fastapi>=0.116.0",
"numpy>=1.26,<2.0",
"open-clip-torch>=2.20.0",
"pydantic>=2.9.0",
"pyyaml>=6.0.2",
"torch>=2.5.0,<2.6.0",
"torchvision>=0.20.0,<0.21.0",
"trimesh>=4.7.4",
"uvicorn>=0.35.0",
]
[project.optional-dependencies]
dev = [
"httpx>=0.28.1",
"pytest>=8.4.2",
]
[project.scripts]
hssd-retrieval-service = "hssd_service.main:main"
ambientcg-material-service = "ambientcg_service.main:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/retrieval_core", "src/hssd_service", "src/ambientcg_service"]
[tool.pytest.ini_options]
pythonpath = [".", "src"]
testpaths = ["tests"]