setup.py
author Radek Brich <radek.brich@devl.cz>
Tue, 04 Feb 2014 16:10:04 +0100
changeset 94 a10f553e6f6a
parent 93 b72591087495
child 101 2a2d0d5df03b
permissions -rwxr-xr-x
PgDiff: Add patch support for SQL functions.

#!/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'],
    )