-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (25 loc) · 973 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
from distutils.core import setup
version = '0.6'
setup(
name='SimpleMenus',
version=version,
author='Jonas Pfannschmidt',
author_email='[email protected]',
license='MIT license http://www.opensource.org/licenses/mit-license.php',
description='A few simple methods to create interactive console applications.',
long_description=open('README.txt').read(),
url = 'http://www.pulsedo.com/free/simplemenus',
download_url = 'http://www.pulsedo.com/free/simplemenus/download/SimpleMenus-' + version + '.zip',
packages=['simplemenus', 'simplemenus.test'],
classifiers= [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Environment :: Console"
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Software Development :: User Interfaces",
"Topic :: Software Development :: Libraries :: Python Modules"
]
)