OmniGibson/setup.py

52 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-23 12:48:19 +08:00
"gym~=0.26",
2023-12-23 07:20:38 +08:00
"numpy~=1.23",
2023-12-23 12:48:19 +08:00
"GitPython~=3.1",
"transforms3d~=0.4",
"networkx~=3.1",
"PyYAML~=6.0",
"addict~=2.4",
"ipython~=8.18",
"future~=0.18",
"trimesh~=4.0",
"h5py~=3.10",
"cryptography~=41.0",
2023-08-05 06:09:25 +08:00
"bddl~=3.1.0",
2023-12-23 12:48:19 +08:00
"opencv-python~=4.8",
"nest_asyncio~=1.5",
"imageio~=2.22",
"imageio-ffmpeg~=0.4",
"termcolor~=2.4",
"progressbar~=2.5",
"pymeshlab~=2023.12",
"click~=8.1",
"aenum~=3.1",
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