OmniGibson/setup.py

55 lines
1.4 KiB
Python
Raw Normal View History

2022-01-26 03:03:32 +08:00
# read the contents of your README file
2024-07-20 01:31:09 +08:00
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
2024-07-20 01:31:09 +08:00
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, "README.md"), encoding="utf-8") as f:
2022-01-26 03:03:32 +08:00
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",
version="1.0.0",
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-11-23 09:14:04 +08:00
"gymnasium>=0.28.1",
2023-12-24 14:20:58 +08:00
"numpy~=1.23.5",
"scipy~=1.10.1",
2023-12-24 14:20:58 +08:00
"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",
"bddl~=3.5.0",
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",
2023-12-24 16:17:00 +08:00
"pymeshlab~=2022.2",
"click~=8.1.3",
2023-12-24 14:20:58 +08:00
"aenum~=3.1.15",
2024-03-16 11:28:23 +08:00
"rtree~=1.2.0",
2024-05-30 02:24:33 +08:00
"graphviz~=0.20",
2024-07-20 02:51:37 +08:00
"numba~=0.60.0",
2017-11-30 08:16:46 +08:00
],
tests_require=[],
2022-01-26 03:03:32 +08:00
python_requires=">=3",
include_package_data=True,
) # yapf: disable