]> git.phdru.name Git - ppu.git/blobdiff - setup.py
Feat: create ppu module
[ppu.git] / setup.py
index 97e975e2a41d70ae3c3b012135b89504a115a5a9..8b5aab78c70b0e9a5871de292f81417c55c1c496 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -1,14 +1,16 @@
 #!/usr/bin/env python
 
+import sys
+
 try:
     from setuptools import setup
 except ImportError:
     from distutils.core import setup
 
 setup(name='ppu',
-      version='0.3.1',
+      version='0.3.2',
       description='Broytman Portable Python Utilities',
-      long_description=open('README.txt', 'rU').read(),
+      long_description=open('README.rst', 'rU').read(),
       author='Oleg Broytman',
       author_email='phd@phdru.name',
       url='http://phdru.name/Software/Python/ppu/',
@@ -23,7 +25,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,6 +32,7 @@ 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',
       ],