]> git.phdru.name Git - ppu.git/blob - setup.py
TODO: GitHub, Travis, AppVeyor, PyPI
[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.1.0',
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 :: 2 - Pre-Alpha',
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 :: 3',
31           'Programming Language :: Python :: 3.3',
32           'Programming Language :: Python :: 3.4',
33           'Programming Language :: Python :: 3.5',
34           'Programming Language :: Python :: 3.6',
35       ],
36       scripts=['remove-old-files.py'],
37       requires=[],
38       )