-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
36 lines (32 loc) · 1.08 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
from setuptools import setup, find_packages
def readme():
with open('README.rst', 'r') as f:
content = f.read()
return content
setup(name='pyxmahjongg',
version='0.2.5',
description='The classic UNIX xmahjongg for Python 3',
long_description=readme(),
entry_points={'console_scripts': [
'pyxmahjongg = pyxmahjongg.pyxmahjongg:main',
]},
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Other Audience',
'License :: Free for non-commercial use',
'Natural Language :: English',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
],
keywords='mahjongg game',
url='https://github.com/kbr/pyxmahjongg',
author='Klaus Bremer',
author_email='[email protected]',
license='Free for non-commercial use',
install_requires=['pillow>=4.0.0'],
packages=find_packages(),
include_package_data=True,
zip_safe=False
)