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