Mercurial > sqlpython
changeset 188:4a639619814a
sending changes to dellzilla
author | catherine@dellzilla |
---|---|
date | Mon, 17 Nov 2008 13:14:29 -0500 |
parents | 0b62e81b068c |
children | c5398d87498e |
files | .hgtags setup.py |
diffstat | 2 files changed, 8 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/.hgtags Fri Aug 29 13:38:31 2008 -0400 +++ b/.hgtags Mon Nov 17 13:14:29 2008 -0500 @@ -2,3 +2,7 @@ 31de4c0b06eef232321bf5cc5677b52eb965232b v1.4.6 38ee1ca9280132285a48e8c1f877a7a81a1bfad4 v1.4.6.1 2b42b7bc29cb95c21c5247cf21e302262afd9b4b 1.4.7 +ddfab7bb9d946ef75e4df9143eb117bc51502fb6 1.4.8 +c03574f007df561dff1c4b79f33a36bce7dff893 1.5.0 +2761360e1db000a42b01a8748c709b0bf678cd30 1.5.0 +85821ea8b30d94338c9374b64cfd1262273b2a64 1.5.0
--- a/setup.py Fri Aug 29 13:38:31 2008 -0400 +++ b/setup.py Mon Nov 17 13:14:29 2008 -0500 @@ -9,21 +9,21 @@ Operating System :: OS Independent""".splitlines() setup(name="sqlpython", - version="1.4.8", + version="1.5.0", description="Command-line interface to Oracle", long_description="Customizable alternative to Oracle's SQL*PLUS command-line interface", author="Luca Canali", author_email="luca.canali@cern.ch", url="https://twiki.cern.ch/twiki/bin/view/PSSGroup/SqlPython", packages=find_packages(), - py_modules = ['mysqlpy','completion','sqlpyPlus','sqlpython','pexpecter'], include_package_data=True, - install_requires=['pyparsing','cmd2>=0.3.5','cx_Oracle'], + install_requires=['pyparsing','cmd2>=0.4.3','cx_Oracle','genshi>=0.5'], keywords = 'client oracle database', license = 'MIT', platforms = ['any'], entry_points = """ [console_scripts] - sqlpython = mysqlpy:run""" + sqlpython = sqlpython.mysqlpy:run + editplot_sqlpython = sqlpython.editplot.bash""" )