setup.py
changeset 67 78478a49c0bd
parent 9 2fcc8ef0b97d
child 82 7b82dc1fb6f5
equal deleted inserted replaced
66:3cd28308d67b 67:78478a49c0bd
     1 #!/usr/bin/env python
     1 #!/usr/bin/env python3.2
     2 
     2 
     3 from distutils.core import setup
     3 from distutils.core import setup
     4 
     4 
     5 setup(
     5 setup(
     6     name='pgtoolkit',
     6     name='pgtoolkit',
     7     version='0.2.0',
     7     version='0.3.0',
     8     description='Postgres utilities, build on top of psycopg2',
     8     description='Postgres utilities, build on top of psycopg2',
     9     author='Radek Brich',
     9     author='Radek Brich',
    10     author_email='radek.brich@devl.cz',
    10     author_email='radek.brich@devl.cz',
    11     url='http://hg.devl.cz/pgtoolkit',
    11     url='http://hg.devl.cz/pgtoolkit',
    12 #    download_url='',
       
    13     keywords=['postgresql', 'psycopg2', 'pool', 'keepalive'],
    12     keywords=['postgresql', 'psycopg2', 'pool', 'keepalive'],
    14     packages=['pgtoolkit'],
    13     packages=['pgtoolkit', 'mytoolkit'],
       
    14     scripts=['analyzeall.py', 'bigtables.py', 'listdepends.py', 'listserial.py',
       
    15         'longqueries.py', 'loopquery.py', 'runquery.py', 'schemadiff.py', 'tablediff.py'],
    15     )
    16     )
    16 
    17