forked from rohanpsingh/mujoco-python-viewer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·31 lines (28 loc) · 846 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
#!/usr/bin/env python3
import os
from setuptools import find_packages, setup
VERSION = '0.1.2'
INSTALL_REQUIRES = (
['mujoco >= 2.1.5',
'glfw >= 2.5.0',
'imageio']
)
setup(
name='mujoco-python-viewer',
version=VERSION,
author='Rohan P. Singh',
author_email='[email protected]',
url='https://github.com/rohanpsingh/mujoco-python-viewer',
description='Interactive renderer for MuJoCo Python',
long_description='Interactive renderer for MuJoCo Python',
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,
)