-
-
Notifications
You must be signed in to change notification settings - Fork 131
/
setup.py
48 lines (40 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
from pathlib import Path
from setuptools import setup, find_packages
install_requires = [
"pytz",
"requests",
"lxml",
"python-dateutil",
"parsedatetime",
"cached-property",
"click",
"pathlib",
"configparser",
"zope.interface",
"attrs",
]
console_scripts = ["poker = poker.commands:poker"]
classifiers = [
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
]
setup(
name="poker",
version="0.30.0",
description="Poker Framework",
long_description=Path("README.rst").read_text(),
classifiers=classifiers,
keywords="poker",
author="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"],
)