comparison setup.py @ 156:4927f901a634

adding bar charts
author catherine@dellzilla
date Mon, 29 Sep 2008 14:50:31 -0400
parents d504e9760dad
children 7a581c412cf1
comparison
equal deleted inserted replaced
155:d504e9760dad 156:4927f901a634
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','output_templates','plothandler'],
20 include_package_data=True, 19 include_package_data=True,
21 install_requires=['pyparsing','cmd2>=0.3.7','cx_Oracle','genshi'], 20 install_requires=['pyparsing','cmd2>=0.3.7','cx_Oracle','genshi'],
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