Mercurial > sqlpython
annotate setup.py @ 445:b34ea206c7d1
debug bind var dependence on arg.parsed.expanded
author | catherine@Drou |
---|---|
date | Tue, 09 Feb 2010 13:48:24 -0500 |
parents | e89db2eaa0b4 |
children | fd86d22fe00d |
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", | |
443 | 12 version="1.7.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", | |
300 | 17 url="http://packages.python.org/sqlpython", |
49 | 18 packages=find_packages(), |
85 | 19 include_package_data=True, |
443 | 20 install_requires=['pyparsing','cmd2>=0.6.0','gerald>=0.3.5', |
444 | 21 'genshi>=0.5'], |
415 | 22 extras_require = { |
23 'oracle': ['cx_Oracle>=5.0.2'], | |
24 'postgres': ['psycopg2'], | |
25 }, | |
49 | 26 keywords = 'client oracle database', |
27 license = 'MIT', | |
28 platforms = ['any'], | |
50
c090fbf19376
this setup.py doesn't work
catherine@DellZilla.myhome.westell.com
parents:
49
diff
changeset
|
29 entry_points = """ |
c090fbf19376
this setup.py doesn't work
catherine@DellZilla.myhome.westell.com
parents:
49
diff
changeset
|
30 [console_scripts] |
188 | 31 sqlpython = sqlpython.mysqlpy:run |
32 editplot_sqlpython = sqlpython.editplot.bash""" | |
49 | 33 ) |
51
fe017e9fe44e
fixing features keyword in setup
catherine@DellZilla.myhome.westell.com
parents:
50
diff
changeset
|
34 |