-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
51 lines (43 loc) · 1.67 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
from setuptools import find_packages
from setuptools import setup
F = 'README.md'
with open(F, 'r') as readme:
LONG_DESCRIPTION = readme.read()
INSTALL_REQUIRES = [
'gym',
'numpy',
'mujoco-py',
'robel',
'setuptools']
CLASSIFIERS = [
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8']
setup(
name='morphing-agents',
packages=find_packages(include=['morphing_agents', 'morphing_agents.*']),
include_package_data=True,
package_data={'morphing_agents': ['mujoco/ant/base.xml', 'mujoco/dog/base.xml']},
version='1.5.1',
license='MIT',
description='Collection Of Dynamic Morphology Agents For MuJoCo',
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
author='Brandon Trabucco',
author_email='[email protected]',
url='https://github.com/brandontrabucco/morphing-agents',
download_url='https://github.com/brandontrabucco/morphing-agents/archive/v1_5_1.tar.gz',
keywords=['MuJoCo', 'Agents', 'Dynamic Morphology'],
install_requires=INSTALL_REQUIRES,
classifiers=CLASSIFIERS)