Mercurial > sqlpython
annotate setup.py @ 186:e26523dd0aeb
terminator bugs fixed
author | catherine@Elli.myhome.westell.com |
---|---|
date | Thu, 13 Nov 2008 15:32:50 -0500 |
parents | 2ab3a24d7974 |
children |
rev | line source |
---|---|
49 | 1 from setuptools import setup, find_packages |
2 | |
3 classifiers = """Development Status :: 4 - Beta | |
4 Intended Audience :: Information Technology | |
5 License :: OSI Approved :: MIT License | |
6 Programming Language :: Python | |
7 Programming Language :: SQL | |
8 Topic :: Database :: Front-Ends | |
9 Operating System :: OS Independent""".splitlines() | |
10 | |
11 setup(name="sqlpython", | |
151 | 12 version="1.5.0", |
49 | 13 description="Command-line interface to Oracle", |
14 long_description="Customizable alternative to Oracle's SQL*PLUS command-line interface", | |
15 author="Luca Canali", | |
16 author_email="luca.canali@cern.ch", | |
17 url="https://twiki.cern.ch/twiki/bin/view/PSSGroup/SqlPython", | |
18 packages=find_packages(), | |
85 | 19 include_package_data=True, |
182 | 20 install_requires=['pyparsing','cmd2>=0.4.3','cx_Oracle','genshi>=0.5'], |
49 | 21 keywords = 'client oracle database', |
22 license = 'MIT', | |
23 platforms = ['any'], | |
50
c090fbf19376
this setup.py doesn't work
catherine@DellZilla.myhome.westell.com
parents:
49
diff
changeset
|
24 entry_points = """ |
c090fbf19376
this setup.py doesn't work
catherine@DellZilla.myhome.westell.com
parents:
49
diff
changeset
|
25 [console_scripts] |
156 | 26 sqlpython = sqlpython.mysqlpy:run |
27 editplot_sqlpython = sqlpython.editplot.bash""" | |
49 | 28 ) |
51
fe017e9fe44e
fixing features keyword in setup
catherine@DellZilla.myhome.westell.com
parents:
50
diff
changeset
|
29 |