setup.py
author Radek Brich <brich.radek@ifortuna.cz>
Mon, 14 Apr 2014 22:28:12 +0200
changeset 97 a4af93e72e2b
parent 93 b72591087495
child 101 2a2d0d5df03b
permissions -rwxr-xr-x
Add batchcopy tool.

#!/usr/bin/env python3

from distutils.core import setup

setup(
    name='pgtoolkit',
    version='0.3.1',
    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'],
    )