]> git.phdru.name Git - ppu.git/blob - setup.py
Version 0.2 alpha
[ppu.git] / setup.py
1 #!/usr/bin/env python
2
3 try:
4     from setuptools import setup
5 except ImportError:
6     from distutils.core import setup
7
8 setup(name='remove-old-files',
9       version='0.2.0',
10       description='Broytman remove-old-files',
11       long_description=open('README.txt', 'rU').read(),
12       author='Oleg Broytman',
13       author_email='phd@phdru.name',
14       url='http://phdru.name/Software/Python/remove-old-files/',
15       license='GPL',
16       platforms=['any'],
17       keywords=[''],
18       classifiers=[
19           'Development Status :: 3 - Alpha',
20           'Environment :: Console',
21           'Environment :: Web Environment',
22           'Intended Audience :: End Users/Desktop',
23           'License :: OSI Approved :: GNU General Public License (GPL)',
24           'Operating System :: OS Independent',
25           'Programming Language :: Python :: 2',
26           'Programming Language :: Python :: 2.6',
27           'Programming Language :: Python :: 2.7',
28           'Programming Language :: Python :: 3',
29           'Programming Language :: Python :: 3.3',
30           'Programming Language :: Python :: 3.4',
31           'Programming Language :: Python :: 3.5',
32           'Programming Language :: Python :: 3.6',
33       ],
34       scripts=['remove-old-files.py'],
35       )