-
Notifications
You must be signed in to change notification settings - Fork 238
/
setup.py
30 lines (28 loc) · 893 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
"""
Deuces: A pure Python poker hand evaluation library
"""
from setuptools import setup
setup(
name='deuces',
version='0.2.1',
description=__doc__,
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
author='Will Drevo',
url='https://github.com/worldveil/deuces',
license='MIT',
packages=['deuces'],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Topic :: Games/Entertainment'
],
#
# https://docs.pytest.org/en/latest/goodpractices.html#integrating-with-setuptools-python-setup-py-test-pytest-runner
#
setup_requires=['pytest-runner'],
tests_require=['mock', 'pytest', 'pytest-cov']
)