-
Notifications
You must be signed in to change notification settings - Fork 60
/
Copy pathsetup.py
79 lines (75 loc) · 2.28 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
# read the contents of your README file
from os import path
from setuptools import find_packages, setup
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, "README.md"), encoding="utf-8") as f:
lines = f.readlines()
# remove images from README
lines = [x for x in lines if ".png" not in x]
long_description = "".join(lines)
setup(
name="omnigibson",
version="1.1.1",
author="Stanford University",
long_description_content_type="text/markdown",
long_description=long_description,
url="https://github.com/StanfordVL/OmniGibson",
zip_safe=False,
packages=find_packages(),
install_requires=[
"gymnasium>=0.28.1",
"numpy<2.0.0,>=1.23.5",
"scipy>=1.10.1",
"GitPython>=3.1.40",
"transforms3d>=0.4.1",
"networkx>=3.2.1",
"PyYAML>=6.0.1",
"addict>=2.4.0",
"ipython>=8.20.0",
"future>=0.18.3",
"trimesh>=4.0.8",
"h5py>=3.10.0",
"cryptography>=41.0.7",
"bddl~=3.5.0",
"opencv-python>=4.8.1",
"nest_asyncio>=1.5.6",
"imageio>=2.33.1",
"imageio-ffmpeg>=0.4.9",
"termcolor>=2.4.0",
"progressbar>=2.5",
"pymeshlab~=2022.2",
"click>=8.1.3",
"aenum>=3.1.15",
"rtree>=1.2.0",
"graphviz>=0.20",
"matplotlib>=3.0.0",
"lxml>=5.3.0",
"numba>=0.60.0",
"cffi>=1.16.0",
"pillow~=10.2.0",
],
extras_require={
"dev": [
"pytest>=6.2.3",
"pytest-cov>=3.0.0",
"pytest_rerunfailures",
"pytest-annotate",
"mkdocs",
"mkdocs-autorefs",
"mkdocs-gen-files",
"mkdocs-material",
"mkdocs-material-extensions",
"mkdocstrings[python]",
"mkdocs-section-index",
"mkdocs-literate-nav",
"telemoma~=0.1.2",
],
"primitives": [
"nvidia-curobo @ git+https://github.com/StanfordVL/curobo@dc52be668a8d0b426b8639de3c8d6443e58cc348",
"ompl @ https://storage.googleapis.com/gibson_scenes/ompl-1.6.0-cp310-cp310-manylinux_2_28_x86_64.whl",
],
},
tests_require=[],
python_requires=">=3",
include_package_data=True,
) # yapf: disable