X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=setup.py;h=fba415a2ee3fc5327bb7a60ff07d39e1ce2b3a5f;hb=78638a131663681fc9a89b246446978abb196325;hp=8b5aab78c70b0e9a5871de292f81417c55c1c496;hpb=55ecf45f8a0eb1acf32ce9009f773facbd937343;p=ppu.git diff --git a/setup.py b/setup.py index 8b5aab7..fba415a 100755 --- a/setup.py +++ b/setup.py @@ -1,14 +1,12 @@ #!/usr/bin/env python -import sys - try: from setuptools import setup except ImportError: from distutils.core import setup setup(name='ppu', - version='0.3.2', + version='0.4.0', description='Broytman Portable Python Utilities', long_description=open('README.rst', 'rU').read(), author='Oleg Broytman', @@ -35,5 +33,6 @@ setup(name='ppu', packages=['ppu'], scripts=[ 'scripts/cmp.py', 'scripts/remove-old-files.py', 'scripts/rm.py', + 'scripts/which.py', ], )