forked from ihendley/treys
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (23 loc) · 729 Bytes
/
setup.py
File metadata and controls
25 lines (23 loc) · 729 Bytes
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
"""
Treys: A pure Python poker hand evaluation library
"""
from setuptools import setup
setup(
name='treys',
version='0.1',
description='treys is a pure Python poker hand evaluation library',
long_description=open('README.md', 'r+', encoding="utf-8").read(),
author='Will Drevo',
url='https://github.com/ihendley/treys',
license='MIT',
packages=['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'
]
)