]> git.phdru.name Git - ppu.git/blobdiff - setup.py
Feat(CI): Use remove-old-files.py to cleanup pip cache
[ppu.git] / setup.py
index d25f5e0c0a2df061576de0554e57812c60362f57..fba415a2ee3fc5327bb7a60ff07d39e1ce2b3a5f 100755 (executable)
--- 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',
@@ -32,7 +30,9 @@ setup(name='ppu',
           'Programming Language :: Python :: 3.5',
           'Programming Language :: Python :: 3.6',
       ],
+      packages=['ppu'],
       scripts=[
           'scripts/cmp.py', 'scripts/remove-old-files.py', 'scripts/rm.py',
+          'scripts/which.py',
       ],
       )