-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
46 lines (43 loc) · 1.02 KB
/
pyproject.toml
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>=61.0",
"wheel",
"scikit-build>=0.14.0",
"nanobind>=0.0.3",
"cmake>=3.18",
"ninja; platform_system!='Windows'"
]
build-backend = "setuptools.build_meta"
[project]
name = "libsg"
version = "0.4.0"
authors = [
{ name="Manolis Savva", email="[email protected]" },
]
description = "libSG: Scene Generation Library"
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"easydict",
"hydra-core",
"flask",
"numpy",
"pybullet",
"pysolr",
"scipy",
"torch",
"torchvision",
"pytorch-fast-transformers", # last, undeclared dep on torch
"shap_e@git+https://github.com/openai/shap-e.git",
"openai==1.12.0",
"diffusers",
"open_clip_torch"
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.urls]
"Homepage" = "https://github.com/smartscenes/libsg"
"Bug Tracker" = "https://github.com/smartscenes/libsg/issues"