-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (29 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
#!/usr/bin/env python
from distutils.core import setup
# Dynamically calculate the version based on output.VERSION.
version = __import__('output').get_version()
setup(
name='output',
version=version,
description='Fancy output for your Python shell scripts.',
long_description=open('README.rst').read(),
author='Dirk Eschler',
author_email='[email protected]',
url='https://github.com/deschler/output',
packages=['output'],
download_url='https://github.com/downloads/deschler/output/output-%s.tar.gz' % version,
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)'
'Operating System :: POSIX',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: System :: Shells',
],
license='GPLv2'
)