-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·31 lines (28 loc) · 762 Bytes
/
setup.py
File metadata and controls
executable file
·31 lines (28 loc) · 762 Bytes
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.0.1'
INSTALL_REQUIRES = (
[
'mujoco >= 2.1.5',
]
)
setup(
name='mujoco-python-engine',
version=VERSION,
author='Jack Xu',
author_email='projectbyjx@gmail.com',
url='https://github.com/jaku-jaku/jx-mujoco-python-engine',
description='Mujoco Engine in Python',
long_description='',
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,
)