| changeset 9 | 2fcc8ef0b97d | 
| child 67 | 78478a49c0bd | 
| 8:2911935c524d | 9:2fcc8ef0b97d | 
|---|---|
1 #!/usr/bin/env python  | 
|
2  | 
|
3 from distutils.core import setup  | 
|
4  | 
|
5 setup(  | 
|
6 name='pgtoolkit',  | 
|
7 version='0.2.0',  | 
|
8 description='Postgres utilities, build on top of psycopg2',  | 
|
9 author='Radek Brich',  | 
|
10 author_email='radek.brich@devl.cz',  | 
|
11 url='http://hg.devl.cz/pgtoolkit',  | 
|
12 # download_url='',  | 
|
13 keywords=['postgresql', 'psycopg2', 'pool', 'keepalive'],  | 
|
14 packages=['pgtoolkit'],  | 
|
15 )  | 
|
16  |