X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=setup.py;h=a449bbb9df5a7e4ddcbf1fb8f3dbf38d28344eb1;hb=018c2fbec5628c5aaf52c6f7d5f45937353dabf1;hp=a3050ec2e3a1aa59d7307b6ae27e2b5bcad109e7;hpb=0ff313fda6247ccc2a882d38ed26041fd18b0c5e;p=ppu.git diff --git a/setup.py b/setup.py index a3050ec..a449bbb 100755 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ except ImportError: is_setuptools = False setup(name='remove-old-files', - version='0.0.1', + version='0.1.0', description='Broytman remove-old-files', long_description=open('README.txt', 'rtU').read(), author='Oleg Broytman', @@ -18,7 +18,7 @@ setup(name='remove-old-files', platforms=['any'], keywords=[''], classifiers=[ - 'Development Status :: 1 - Planning', + 'Development Status :: 2 - Pre-Alpha', 'Environment :: Console', 'Environment :: Web Environment', 'Intended Audience :: End Users/Desktop', @@ -27,8 +27,12 @@ setup(name='remove-old-files', 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2.6', 'Programming Language :: Python :: 2.7', - 'Programming Language :: Python :: 2 :: Only', + 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3.3', + 'Programming Language :: Python :: 3.4', + 'Programming Language :: Python :: 3.5', + 'Programming Language :: Python :: 3.6', ], - scripts=[], + scripts=['remove-old-files.py'], requires=[], )