forked from hello-robot/stretch_mujoco
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (33 loc) · 856 Bytes
/
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
from setuptools import find_packages, setup
setup(
name="stretch_mujoco",
version=None,
packages=find_packages(),
install_requires=[
"mujoco",
"numpy<2",
"opencv-python",
"urchin",
"click",
"hello-robot-stretch-urdf",
],
package_data={
"": ["models/*"],
},
author="Hello Robot Inc.",
author_email="[email protected]",
description="A package for interfacing with MuJoCo for Stretch robot simulations",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/hello-robot/stretch_mujoco",
python_requires=">=3.8",
extras_require={
"dev": [
"pre-commit",
"pytest",
"flake8",
"black",
"mypy",
]
},
)