2 |
2 |
3 from distutils.core import setup |
3 from distutils.core import setup |
4 |
4 |
5 setup( |
5 setup( |
6 name='pgtoolkit', |
6 name='pgtoolkit', |
7 version='0.3.1', |
7 version='0.4.0', |
8 description='Postgres utilities, build on top of psycopg2', |
8 description='Postgres utilities, build on top of psycopg2', |
9 author='Radek Brich', |
9 author='Radek Brich', |
10 author_email='radek.brich@devl.cz', |
10 author_email='radek.brich@devl.cz', |
11 url='http://hg.devl.cz/pgtoolkit', |
11 url='http://hg.devl.cz/pgtoolkit', |
12 keywords=['postgresql', 'psycopg2', 'pool', 'keepalive'], |
12 keywords=['postgresql', 'psycopg2', 'pool', 'keepalive'], |
13 packages=['pgtoolkit', 'mytoolkit'], |
13 packages=['pgtoolkit', 'pgtoolkit.tools', 'mytoolkit'], |
14 scripts=['analyzeall.py', 'bigtables.py', 'listdepends.py', 'listserial.py', |
14 scripts=['pgtool'], |
15 'longqueries.py', 'loopquery.py', 'runquery.py', 'schemadiff.py', 'tablediff.py'], |
15 ) |
16 ) |
|
17 |
16 |