-
Notifications
You must be signed in to change notification settings - Fork 73
/
Copy pathsetup.py
35 lines (33 loc) · 963 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
31
32
33
34
from setuptools import setup, find_packages
setup(
name = 'PyPokerGUI',
version = '0.0.7',
author = 'ishikota',
author_email = '[email protected]',
description = 'GUI application for PyPokerEngine',
license = 'MIT',
keywords = 'python poker engine gui',
url = 'https://github.com/ishikota/PyPokerGUI',
packages = [pkg for pkg in find_packages() if pkg != "tests"],
package_data={
'pypokergui': [
'server/static/*.css',
'server/static/*.js',
'server/static/images/*',
'server/templates/*',
]
},
classifiers=[
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
],
install_requires=[
'pypokerengine',
'tornado==4.4.2',
'click==6.7',
'PyYAML==3.12',
],
entry_points={
'console_scripts': ['pypokergui=pypokergui.__main__:cli']
},
)