setup.py
author Radek Brich <brich.radek@ifortuna.cz>
Tue, 06 May 2014 18:37:41 +0200
changeset 100 d6088dba8fea
parent 93 b72591087495
child 101 2a2d0d5df03b
permissions -rwxr-xr-x
Add pgtool wrapper for all tools. Only this script will be installed into system bin.

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