OmniGibson/setup.py

53 lines
1.4 KiB
Python
Raw Normal View History

2022-01-26 03:03:32 +08:00
# read the contents of your README file
from os import path
2019-01-06 09:22:44 +08:00
2022-01-26 03:03:32 +08:00
from setuptools import find_packages, setup
2020-04-28 16:11:26 +08:00
2022-01-26 03:03:32 +08:00
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, "README.md"), encoding="utf-8") as f:
lines = f.readlines()
2019-04-30 07:50:52 +08:00
2022-01-26 03:03:32 +08:00
# remove images from README
lines = [x for x in lines if ".png" not in x]
long_description = "".join(lines)
2017-08-17 08:09:36 +08:00
2019-05-22 05:30:07 +08:00
setup(
2022-10-23 06:51:44 +08:00
name="omnigibson",
2023-08-30 03:42:34 +08:00
version="0.2.1",
author="Stanford University",
2020-04-08 04:10:56 +08:00
long_description_content_type="text/markdown",
long_description=long_description,
2022-12-12 17:41:12 +08:00
url="https://github.com/StanfordVL/OmniGibson",
2017-11-30 08:16:46 +08:00
zip_safe=False,
packages=find_packages(),
2017-11-30 08:16:46 +08:00
install_requires=[
2023-12-24 14:20:58 +08:00
"gym~=0.26.2",
"numpy~=1.23.5",
"GitPython~=3.1.40",
"transforms3d~=0.4.1",
"networkx~=3.2.1",
"PyYAML~=6.0.1",
"addict~=2.4.0",
"ipython~=8.20.0",
2023-12-24 14:20:58 +08:00
"future~=0.18.3",
"trimesh~=4.0.8",
"h5py~=3.10.0",
"cryptography~=41.0.7",
2024-02-17 06:44:41 +08:00
"bddl~=3.4.0b4",
2023-12-24 14:20:58 +08:00
"opencv-python~=4.8.1",
"nest_asyncio~=1.5.8",
"imageio~=2.33.1",
"imageio-ffmpeg~=0.4.9",
"termcolor~=2.4.0",
2023-12-23 12:48:19 +08:00
"progressbar~=2.5",
"pymeshlab~=2022.2",
2023-12-24 14:20:58 +08:00
"click~=8.1.7",
"aenum~=3.1.15",
2024-02-21 03:25:14 +08:00
"rtree~=1.2.0"
2017-11-30 08:16:46 +08:00
],
tests_require=[],
2022-01-26 03:03:32 +08:00
python_requires=">=3",
2022-10-23 06:51:44 +08:00
package_data={"": ["omnigibson/global_config.yaml"]},
include_package_data=True,
2020-12-15 11:10:56 +08:00
) # yapf: disable