forked from julianandrews/pyeval7
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
25 lines (23 loc) · 778 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
from setuptools import setup
from Cython.Build import cythonize
extensions = cythonize('eval7/*.pyx')
setup(
name='eval7',
version='0.1.3',
description='A poker hand evaluation and equity calculation library',
url='https://github.com/JulianAndrews/pyeval7',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Cython',
'Topic :: Software Development :: Libraries',
'Topic :: Games/Entertainment',
],
keywords='poker equity library',
packages=['eval7'],
ext_modules=extensions,
install_requires=['pyparsing', 'future'],
)