X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=setup.py;h=fba415a2ee3fc5327bb7a60ff07d39e1ce2b3a5f;hb=c9b64e869f9e673b0d213be3f7d098ef00e4fe1c;hp=30dd82dc956f5a4f95fc606f37a4fe978c3f7fe0;hpb=50f80825db42438a5f6d2de7a0d0a0f6a343bfa4;p=ppu.git diff --git a/setup.py b/setup.py index 30dd82d..fba415a 100755 --- 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', ], )