Mercurial > sqlpython
annotate setup.py @ 149:3b1e25cc0e38
html output now valid xhtml 1.0 strict
author | catherine@dellzilla |
---|---|
date | Fri, 26 Sep 2008 10:33:37 -0400 |
parents | d5917f02ae83 |
children | b00a020b81c6 |
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", | |
149 | 12 version="1.4.9", |
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(), | |
149 | 19 py_modules = ['mysqlpy','completion','sqlpyPlus','sqlpython','pexpecter','output_templates'], |
85 | 20 include_package_data=True, |
146
d5917f02ae83
html output switched to genshi
catherine@Elli.myhome.westell.com
parents:
141
diff
changeset
|
21 install_requires=['pyparsing','cmd2>=0.3.6','cx_Oracle','genshi'], |
49 | 22 keywords = 'client oracle database', |
23 license = 'MIT', | |
24 platforms = ['any'], | |
50
c090fbf19376
this setup.py doesn't work
catherine@DellZilla.myhome.westell.com
parents:
49
diff
changeset
|
25 entry_points = """ |
c090fbf19376
this setup.py doesn't work
catherine@DellZilla.myhome.westell.com
parents:
49
diff
changeset
|
26 [console_scripts] |
52
46e6688c1881
fixing error in console_scripts
catherine@DellZilla.myhome.westell.com
parents:
51
diff
changeset
|
27 sqlpython = mysqlpy:run""" |
49 | 28 ) |
51
fe017e9fe44e
fixing features keyword in setup
catherine@DellZilla.myhome.westell.com
parents:
50
diff
changeset
|
29 |