-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
31 lines (28 loc) · 1.25 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
"""Settings to assist package installation"""
import setuptools
with open('README.md', 'r') as f:
long_description = f.read()
setuptools.setup(name='hangman',
version='0.2',
author='Raj Dholakia',
author_email='[email protected]',
url='https://gtihub.com/radroid/Hangman',
license='MIT open-source licence',
description='hangman game package',
keywords=['hangman', 'simple hangman', 'hangman package',
'game', 'game package', 'play hangman'],
long_description=long_description,
packages=setuptools.find_packages(),
zip_safe=False,
install_requires=[],
classifiers=[
'Development Status :: 2 - Beta',
'Intended Audience :: End Users/Desktop',
'License :: MIT',
'Operating System :: Linux/MacOs',
'Programming Language :: Python',
'Topic :: Desktop Environment'
],
include_package_data=True,
package_data={'': ['data/*.txt', 'examples/*.py']},
)