diff -r 2911935c524d -r 2fcc8ef0b97d setup.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/setup.py Tue Aug 16 16:03:46 2011 +0200 @@ -0,0 +1,16 @@ +#!/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'], + ) +