setup.py
author Radek Brich <radek.brich@devl.cz>
Sat, 29 Sep 2012 12:08:47 +0200
changeset 48 b82c7c2fb5af
parent 9 2fcc8ef0b97d
child 67 78478a49c0bd
permissions -rw-r--r--
PgManager: Fix logging, log queries before executing, possible exceptions are logged after. Add tests for RowDict. Add tests.py - runs all tests.

#!/usr/bin/env python

from distutils.core import setup

setup(
    name='pgtoolkit',
    version='0.2.0',
    description='Postgres utilities, build on top of psycopg2',
    author='Radek Brich',
    author_email='radek.brich@devl.cz',
    url='http://hg.devl.cz/pgtoolkit',
#    download_url='',
    keywords=['postgresql', 'psycopg2', 'pool', 'keepalive'],
    packages=['pgtoolkit'],
    )