-
Notifications
You must be signed in to change notification settings - Fork 246
/
Copy pathsetup.py
139 lines (119 loc) · 4.4 KB
/
setup.py
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
import argparse
import datetime
import sys
from datetime import date
from pathlib import Path
from setuptools import find_packages, setup
# update this version when a new official pypi release is made
__version__ = "3.0.0b20"
def get_package_version():
return __version__
def get_nightly_version():
today = date.today()
now = datetime.datetime.now()
timing = f"{now.hour:02d}{now.minute:02d}"
return f"{today.year}.{today.month}.{today.day}.{timing}"
def get_python_version():
return f"cp{sys.version_info.major}{sys.version_info.minor}"
def get_dependencies():
install_requires = [
"numpy>=1.22,<2.0.0",
"scipy",
"dacite",
"gymnasium==0.29.1",
"h5py",
"pyyaml",
"tqdm",
"GitPython",
"tabulate",
"transforms3d",
"trimesh",
"imageio",
"imageio[ffmpeg]",
"mplib==0.1.1;platform_system=='Linux'",
"fast_kinematics==0.2.2;platform_system=='Linux'",
"IPython",
"pytorch_kinematics==0.7.5",
"pynvml", # gpu monitoring
"tyro>=0.8.5", # nice, typed, command line arg parser
"huggingface_hub", # we use HF to version control some assets/datasets more easily
"sapien>=3.0.0.b1;platform_system=='Linux'",
"sapien>=3.0.0.b1;platform_system=='Windows'",
]
# NOTE (stao): until sapien is uploaded to pypi with mac support, users need to install manually below as so
# f"sapien @ https://github.com/haosulab/SAPIEN/releases/download/nightly/sapien-3.0.0.dev20250303+291f6a77-{python_version}-{python_version}-macosx_12_0_universal2.whl;platform_system=='Darwin'"
return install_requires
def parse_args(argv):
parser = argparse.ArgumentParser(description="ManiSkill setup.py configuration")
parser.add_argument(
"--package_name",
type=str,
default="mani_skill",
choices=["mani_skill", "mani_skill-nightly"],
help="the name of this output wheel. Should be either 'mani_skill' or 'mani_skill_nightly'",
)
return parser.parse_known_args(argv)
def main(argv):
args, unknown = parse_args(argv)
name = args.package_name
is_nightly = name == "mani_skill-nightly"
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text(encoding="utf8")
if is_nightly:
version = get_nightly_version()
else:
version = get_package_version()
sys.argv = [sys.argv[0]] + unknown
print(sys.argv)
setup(
name=name,
version=version,
description="ManiSkill3: A Unified Benchmark for Generalizable Manipulation Skills",
long_description=long_description,
long_description_content_type="text/markdown",
author="ManiSkill contributors",
url="https://github.com/haosulab/ManiSkill",
packages=find_packages(include=["mani_skill*"]),
python_requires=">=3.9",
setup_requires=["setuptools>=62.3.0"],
install_requires=get_dependencies(),
# Glob patterns do not automatically match dotfiles
package_data={
"mani_skill": ["assets/**", "envs/**/*", "utils/**/*"],
"warp_maniskill.warp": ["native/*", "native/nanovdb/*"],
},
extras_require={
"dev": [
"pytest",
"black",
"isort",
"pre-commit",
"build",
"twine",
"stable_baselines3",
"pynvml",
"pytest-xdist[psutil]",
"pytest-forked",
],
"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",
],
},
)
if __name__ == "__main__":
main(sys.argv[1:])