OmniGibson/setup.py

52 lines
1.3 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=[
"gym>=0.26",
2022-12-12 17:41:12 +08:00
"numpy>=1.20.0",
2022-06-04 07:02:03 +08:00
"GitPython",
2022-10-19 06:56:48 +08:00
"transforms3d>=0.3.1",
"networkx>=2.0",
2022-10-19 06:56:48 +08:00
"PyYAML",
"addict",
"ipython",
"future",
2022-10-19 06:56:48 +08:00
"trimesh",
"h5py",
2022-10-20 12:26:13 +08:00
"cryptography",
2023-08-05 06:09:25 +08:00
"bddl~=3.1.0",
2022-12-15 18:23:27 +08:00
"opencv-python",
"nest_asyncio",
2023-03-10 09:34:12 +08:00
"imageio",
2023-04-08 08:47:39 +08:00
"imageio-ffmpeg",
2023-03-25 03:41:10 +08:00
"termcolor",
"progressbar",
2023-05-10 09:39:47 +08:00
"pymeshlab",
2023-08-25 06:04:21 +08:00
"click",
"aenum",
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