forked from dickreuter/neuron_poker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (17 loc) · 665 Bytes
/
setup.py
File metadata and controls
20 lines (17 loc) · 665 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
"""Distribution to pipy"""
from setuptools import setup, find_packages
with open("readme.rst") as readme:
long_description = readme.read()
setup(
name='neuron_poker',
version='1.0.0',
long_description=long_description,
url='https://github.com/dickreuter/neuron_poker',
author='Nicolas Dickreuter',
author_email='[email protected]',
license='MIT',
description=('OpenAi gym for textas holdem poker with graphical rendering and montecarlo.'),
packages=find_packages(exclude=['tests', 'gym_env', 'tools']),
install_requires=['pyglet', 'pytest', 'pandas', 'pylint', 'gym', 'numpy', 'matplotlib'],
platforms='any',
)