-
Notifications
You must be signed in to change notification settings - Fork 132
/
setup.py
44 lines (38 loc) · 1.46 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
import os
import pathlib
import platform
from distutils.core import setup
from setuptools import find_packages
this_directory = pathlib.Path(__file__).parent.resolve()
os_name = platform.system()
with open(os.path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
with open(os.path.join(this_directory, 'requirements.txt'), encoding='utf-8') as f:
requirements = f.read()
setup(
name='rex_gym',
version='0.2.7',
license='Apache 2.0',
packages=find_packages(),
author='Nicola Russo',
author_email='[email protected]',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/nicrusso7/rex-gym',
download_url='https://github.com/nicrusso7/rex-gym/archive/master.zip',
install_requires=requirements,
entry_points='''
[console_scripts]
rex-gym=rex_gym.cli.entry_point:cli
''',
include_package_data=True,
keywords=['openai', 'gym', 'robot', 'quadruped', 'pybullet', 'ai', 'reinforcement learning', 'machine learning',
'RL', 'ML', 'tensorflow', 'spotmicro', 'rex'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Framework :: Robot Framework :: Library',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3.7']
)