Mercurial > sqlpython
annotate setup.py @ 349:f92e15f3d0ed
show comments working
author | catherine@cordelia |
---|---|
date | Fri, 24 Apr 2009 15:59:12 -0400 |
parents | c652478be4fd |
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", | |
324
9cbea1d8872e
version 1.6.4, works with cmd2 0.5.2 for more flexible testing
Catherine Devlin <catherine.devlin@gmail.com>
parents:
317
diff
changeset
|
12 version="1.6.4", |
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, |
348 | 20 install_requires=['pyparsing','cmd2>=0.5.2','genshi>=0.5','sqlalchemy','gerald'], |
21 extras_require = {'oracle': ['cx_Oracle'], | |
22 'mysql': ['MySQL-python'], | |
23 'postgres': ['psycopg2']}, | |
24 keywords = 'client oracle database rdbms sql', | |
49 | 25 license = 'MIT', |
26 platforms = ['any'], | |
50
c090fbf19376
this setup.py doesn't work
catherine@DellZilla.myhome.westell.com
parents:
49
diff
changeset
|
27 entry_points = """ |
c090fbf19376
this setup.py doesn't work
catherine@DellZilla.myhome.westell.com
parents:
49
diff
changeset
|
28 [console_scripts] |
188 | 29 sqlpython = sqlpython.mysqlpy:run |
30 editplot_sqlpython = sqlpython.editplot.bash""" | |
49 | 31 ) |
51
fe017e9fe44e
fixing features keyword in setup
catherine@DellZilla.myhome.westell.com
parents:
50
diff
changeset
|
32 |