-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
45 lines (39 loc) · 1.47 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
import os
from distutils.core import setup
from setuptools import find_packages
this_directory = os.path.abspath(os.path.dirname(__file__))
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='core',
version='0.0.1',
license='Apache 2.0',
packages=find_packages('core'),
package_dir={'': 'core'},
author='Nicola Russo',
author_email='[email protected]',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/nicrusso7/rexctl',
download_url='https://github.com/nicrusso7/rexctl/archive/master.zip',
install_requires=requirements,
entry_points='''
[console_scripts]
rexctl=cli.entry_point:cli
''',
package_data={
'webserver': ['scripts/*'],
'util': ['sim/*', 'templates/*']
},
keywords=['robot', 'quadruped', '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']
)