-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
33 lines (28 loc) · 793 Bytes
/
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
from setuptools import setup, find_packages
import sys
with open('README.md') as f:
readme = f.read()
with open('LICENSE') as f:
license = f.read()
py_version = sys.version_info[:2]
if py_version < (3, 5):
raise Exception("websockets requires Python >= 3.5.")
setup(
name='pokemonai',
version='0.0.1',
description='Reinforcement Learning agent to play competitive Pokemon',
long_description=readme,
author='Rishi Shah',
author_email='[email protected]',
url='https://github.com/rishihahs/pokemonai',
license=license,
packages=find_packages(exclude=('bin')),
package_data={
'pokemonai': ['data/*.json']
},
entry_points={
'console_scripts': [
'pokemonai = pokemonai.__main__:main'
]
},
)