Mercurial > sqlpython
annotate setup.py @ 301:d79e885fa84f
longer long_description
author | catherine@Elli.myhome.westell.com |
---|---|
date | Tue, 24 Mar 2009 09:13:57 -0400 |
parents | aec778ef82b6 |
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", | |
250 | 12 version="1.6.1", |
49 | 13 description="Command-line interface to Oracle", |
301 | 14 long_description="""Customizable alternative to Oracle's SQL*PLUS command-line interface. |
15 Issue ad-hoc or scripted SQL queries. Options for specially formatted output, | |
16 data dictionary access, and Python access to query result sets. | |
17 """, | |
49 | 18 author="Luca Canali", |
19 author_email="luca.canali@cern.ch", | |
20 url="https://twiki.cern.ch/twiki/bin/view/PSSGroup/SqlPython", | |
21 packages=find_packages(), | |
85 | 22 include_package_data=True, |
250 | 23 install_requires=['pyparsing','cmd2>=0.4.8','cx_Oracle','genshi>=0.5'], |
49 | 24 keywords = 'client oracle database', |
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 |