File size: 886 Bytes
616f571
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
[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 = "[email protected]" }
]
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