-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
pyproject.toml
83 lines (77 loc) · 1.69 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
# name = "genesis-world-nightly"
# version = "0.0.3"
name = "genesis-world"
version = "0.2.0"
description = "A universal and generative physics engine"
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"psutil",
"scikit-image",
"taichi == 1.7.2",
"pydantic == 2.7.1",
"numpy == 1.26.4",
"six",
"PyOpenGL",
"freetype-py",
"pyglet",
"libigl",
"pygltflib == 1.16.0",
"mujoco == 3.2.5",
"pycollada",
"opencv-python",
"lxml",
"tetgen == 0.6.4",
"screeninfo",
"PyGEL3D",
"moviepy >= 2.0.0",
"numba",
"pymeshlab",
"coacd",
"OpenEXR",
"black",
]
[tool.setuptools.packages.find]
where = ["."]
include = ["genesis", "genesis.*"]
[tool.setuptools.package-data]
genesis = [
"assets/*",
"ext/pyrender/fonts/*",
"ext/pyrender/shaders/*",
"ext/VolumeSampling",
]
[tool.black]
line-length = 120
[project.scripts]
gs = "genesis._main:main"
[project.optional-dependencies]
gen = [
"openai",
]
docs = [
# Note that currently sphinx 7 does not work, so we must use v6.2.1. See https://github.com/kivy/kivy/issues/8230 which tracks this issue. Once fixed we can use a later version
"sphinx==6.2.1",
"sphinx-autobuild",
"pydata_sphinx_theme",
# For spelling
"sphinxcontrib.spelling",
# Type hints support
"sphinx-autodoc-typehints",
# Copy button for code snippets
"sphinx_copybutton",
# Markdown parser
"myst-parser",
"sphinx-subfigure",
"sphinxcontrib-video",
"sphinx-togglebutton",
"sphinx_design",
]
render = [
"pybind11[global]",
"open3d",
]