forked from msaindon/deuces
-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathsetup.py
26 lines (23 loc) · 787 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
"""
Treys: A pure Python poker hand evaluation library
"""
from setuptools import setup, find_packages
setup(
name='treys',
version='0.1.8',
description='treys is a pure Python poker hand evaluation library',
long_description=open('README.rst').read(),
author='Will Drevo, Mark Saindon, Imran Hendley',
url='https://github.com/ihendley/treys',
license='MIT',
packages=find_packages(include=['treys', 'treys.*']),
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Topic :: Games/Entertainment'
]
)