setup.py
author Radek Brich <radek.brich@devl.cz>
Tue, 05 Mar 2013 11:24:47 +0100
changeset 71 4251068a251a
parent 67 78478a49c0bd
child 82 7b82dc1fb6f5
permissions -rwxr-xr-x
Update MyManager.

#!/usr/bin/env python3.2

from distutils.core import setup

setup(
    name='pgtoolkit',
    version='0.3.0',
    description='Postgres utilities, build on top of psycopg2',
    author='Radek Brich',
    author_email='radek.brich@devl.cz',
    url='http://hg.devl.cz/pgtoolkit',
    keywords=['postgresql', 'psycopg2', 'pool', 'keepalive'],
    packages=['pgtoolkit', 'mytoolkit'],
    scripts=['analyzeall.py', 'bigtables.py', 'listdepends.py', 'listserial.py',
        'longqueries.py', 'loopquery.py', 'runquery.py', 'schemadiff.py', 'tablediff.py'],
    )