-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
39 lines (34 loc) · 1.38 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
from setuptools import setup, find_packages
import os
BASE_DIR = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(BASE_DIR, 'README.rst')) as f:
README = f.read()
with open(os.path.join(BASE_DIR, 'requirements.txt')) as f:
requirements = f.read().splitlines()
setup(name='cartpole-rl-remote',
python_requires='>=3.5, <=3.7',
version=__import__("cartpole").VERSION,
description="Cartpole: Remote RL Agent",
author_email=["[email protected] ", "[email protected]"],
maintainer_email="[email protected]",
license="MIT",
long_description=README,
classifiers=[
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Information Analysis',
'License :: OSI Approved :: MIT License',
],
url='https://github.com/hypnosapos/cartpole-rl-remote',
packages=find_packages(exclude=["tests", "docs", "scaffold"]),
include_package_data=True,
install_requires=requirements,
entry_points={
'console_scripts': [
"cartpole = cartpole.client.shell_cmd:main"
]
},
zip_safe=False)