setup.py
author Radek Brich <radek.brich@devl.cz>
Mon, 26 May 2014 18:18:21 +0200
changeset 103 24e94a3da209
parent 102 fda45bdfd68d
child 104 d8ff52a0390f
permissions -rwxr-xr-x
Update bigtables tool: Sort by size with indexes, not just data.

#!/usr/bin/env python3

from distutils.core import setup

setup(
    name='pgtoolkit',
    version='0.4.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', 'pgtoolkit.tools', 'mytoolkit'],
    scripts=['pgtool'],
)