comparison setup.py @ 188:4a639619814a

sending changes to dellzilla
author catherine@dellzilla
date Mon, 17 Nov 2008 13:14:29 -0500
parents 4c59f4a8b680
children 3ca2271847e2
comparison
equal deleted inserted replaced
139:0b62e81b068c 188:4a639619814a
7 Programming Language :: SQL 7 Programming Language :: SQL
8 Topic :: Database :: Front-Ends 8 Topic :: Database :: Front-Ends
9 Operating System :: OS Independent""".splitlines() 9 Operating System :: OS Independent""".splitlines()
10 10
11 setup(name="sqlpython", 11 setup(name="sqlpython",
12 version="1.4.8", 12 version="1.5.0",
13 description="Command-line interface to Oracle", 13 description="Command-line interface to Oracle",
14 long_description="Customizable alternative to Oracle's SQL*PLUS command-line interface", 14 long_description="Customizable alternative to Oracle's SQL*PLUS command-line interface",
15 author="Luca Canali", 15 author="Luca Canali",
16 author_email="luca.canali@cern.ch", 16 author_email="luca.canali@cern.ch",
17 url="https://twiki.cern.ch/twiki/bin/view/PSSGroup/SqlPython", 17 url="https://twiki.cern.ch/twiki/bin/view/PSSGroup/SqlPython",
18 packages=find_packages(), 18 packages=find_packages(),
19 py_modules = ['mysqlpy','completion','sqlpyPlus','sqlpython','pexpecter'],
20 include_package_data=True, 19 include_package_data=True,
21 install_requires=['pyparsing','cmd2>=0.3.5','cx_Oracle'], 20 install_requires=['pyparsing','cmd2>=0.4.3','cx_Oracle','genshi>=0.5'],
22 keywords = 'client oracle database', 21 keywords = 'client oracle database',
23 license = 'MIT', 22 license = 'MIT',
24 platforms = ['any'], 23 platforms = ['any'],
25 entry_points = """ 24 entry_points = """
26 [console_scripts] 25 [console_scripts]
27 sqlpython = mysqlpy:run""" 26 sqlpython = sqlpython.mysqlpy:run
27 editplot_sqlpython = sqlpython.editplot.bash"""
28 ) 28 )
29 29