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
|
#!/usr/bin/python
import os
from distutils.core import setup
import progressbar
if os.stat('progressbar.py').st_mtime > os.stat('README').st_mtime:
file('README','w').write(progressbar.__doc__)
setup(
name = 'progressbar',
version = progressbar.__version__,
description = progressbar.__doc__.splitlines()[0],
long_description = progressbar.__doc__,
maintainer = progressbar.__author__,
maintainer_email = progressbar.__author_email__,
url = 'http://qubit.ic.unicamp.br/~nilton',
py_modules = ['progressbar'],
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: User Interfaces',
'Topic :: Terminals',
],
)
|