forked from jaku-jaku/jx-mujoco-python-engine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (30 loc) · 932 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
#!/usr/bin/env python3
import os
from setuptools import find_packages, setup
VERSION = '1.0.1'
INSTALL_REQUIRES = (
[
'mujoco >= 2.2.0',
'glfw >= 2.5.0',
'imageio'
]
)
setup(
name='mujoco-python-engine',
version=VERSION,
author='Jack Xu',
author_email='projectbyjx@gmail.com',
url='https://github.com/UW-Advanced-Robotics-Lab/uwarl-mujoco-python-engine',
description='Interactive engine for MuJoCo Python',
long_description='Interactive engine for MuJoCo Python, inspired by interactive mujoco-python-engine and mujoco-py',
install_requires=INSTALL_REQUIRES,
packages=find_packages(),
python_requires='>=3.6',
classifiers=[
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3 :: Only',
],
zip_safe=False,
)