]> git.phdru.name Git - ppu.git/blobdiff - setup.py
Version 0.4.0: Add script which.py
[ppu.git] / setup.py
index 30dd82dc956f5a4f95fc606f37a4fe978c3f7fe0..fba415a2ee3fc5327bb7a60ff07d39e1ce2b3a5f 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -6,7 +6,7 @@ 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',
@@ -23,7 +23,6 @@ setup(name='ppu',
           'License :: OSI Approved :: GNU General Public License (GPL)',
           'Operating System :: OS Independent',
           'Programming Language :: Python :: 2',
-          'Programming Language :: Python :: 2.6',
           'Programming Language :: Python :: 2.7',
           'Programming Language :: Python :: 3',
           'Programming Language :: Python :: 3.3',
@@ -31,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',
       ],
       )