608418fef07e11ba28e664ab8f9caad22608af75
[curses_check_for_keypress.git] / setup.py
1 # Copyright
2
3 "curses_check_for_keypress: loop until user presses a key."
4
5 from distutils.core import setup
6 import os.path
7
8 from curses_check_for_keypress import __version__
9
10
11 package_name = 'curses-check-for-keypress'
12 _this_dir = os.path.dirname(__file__)
13
14 setup(name=package_name,
15       version=__version__,
16       maintainer='W. Trevor King',
17       maintainer_email='wking@tremily.us',
18       url = 'http://blog.tremily.us/post/{}/'.format(package_name),
19       download_url = 'http://git.tremily.us/?p={}.git/a=snapshot;h=v{};sf=tgz'.format(
20         package_name, __version__),
21
22       license = 'GNU GPL v3+',
23       platforms = ['all'],
24       description = __doc__,
25       long_description = open(os.path.join(_this_dir, 'README'), 'r').read(),
26       classifiers = [
27         'Development Status :: 2 - Pre-Alpha',
28         'Intended Audience :: Developers',
29         'Operating System :: OS Independent',
30         'License :: OSI Approved :: GNU General Public License (GPL)',
31         'Programming Language :: Python',
32         'Topic :: Software Development :: Libraries :: Python Modules',
33         ],
34       py_modules = ['curses_check_for_keypress'],
35       )