forked from pokerregion/poker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
50 lines (41 loc) · 1.09 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
install_requires = [
'pytz',
'requests',
'lxml',
'python-dateutil',
'parsedatetime',
'cached-property',
'click',
'enum34', # backported versions from Python3
'pathlib',
'configparser',
'zope.interface',
'attrs',
]
console_scripts = [
'poker = poker.commands:poker',
]
classifiers = [
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
]
setup(
name='poker',
version='0.23.1',
description='Poker Framework',
long_description=open('README.rst', 'r', encoding='utf-8').read(),#.decode('utf-8'),
classifiers=classifiers,
keywords='poker',
author=u'Kiss György',
author_email="[email protected]",
url="https://github.com/pokerregion/poker",
license="MIT",
packages=find_packages(),
install_requires=install_requires,
entry_points={'console_scripts': console_scripts},
tests_require=['pytest', 'coverage', 'coveralls'],
)