forked from Roblox/cube
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (36 loc) · 886 Bytes
/
pyproject.toml
File metadata and controls
38 lines (36 loc) · 886 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "cube"
version = "0.1"
requires-python = ">=3.7"
description = "A generative 3D model to accelerate the creation of 3D assets, accessories, and experiences."
authors = [
{ name = "Foundation AI", email = "foundationai@roblox.com" }
]
keywords = ["cube"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.10",
]
dependencies = [
"numpy",
"torch>=2.2.2",
"tqdm",
"transformers",
"omegaconf",
"warp-lang",
"accelerate>=0.26.0",
"scikit-image",
"huggingface_hub[cli]",
"trimesh"
]
[project.optional-dependencies]
meshlab = ["pymeshlab"]
lint = ["ruff==0.9.10"]
[tool.setuptools.packages.find]
where = ["cube3d"]
include = ["cube/*"]
namespaces = false