Mercurial > sqlpython
annotate setup.py @ 527:9aeb875cd2b2
removing unused resolve()
author | catherine.devlin@gmail.com |
---|---|
date | Tue, 25 Jan 2011 08:51:01 -0500 |
parents | 69997c324eb9 |
children |
rev | line source |
---|---|
477 | 1 try: |
2 from setuptools import setup, find_packages | |
3 except ImportError: | |
4 from distutils.core import setup | |
5 def find_packages(): | |
6 return ['sqlpython'] | |
7 | |
49 | 8 classifiers = """Development Status :: 4 - Beta |
9 Intended Audience :: Information Technology | |
10 License :: OSI Approved :: MIT License | |
11 Programming Language :: Python | |
12 Programming Language :: SQL | |
13 Topic :: Database :: Front-Ends | |
14 Operating System :: OS Independent""".splitlines() | |
15 | |
16 setup(name="sqlpython", | |
518 | 17 version="1.7.2", |
49 | 18 description="Command-line interface to Oracle", |
19 long_description="Customizable alternative to Oracle's SQL*PLUS command-line interface", | |
20 author="Luca Canali", | |
21 author_email="luca.canali@cern.ch", | |
300 | 22 url="http://packages.python.org/sqlpython", |
49 | 23 packages=find_packages(), |
85 | 24 include_package_data=True, |
518 | 25 install_requires=['pyparsing','cmd2>=0.6.2','gerald>=0.4.1.1', |
444 | 26 'genshi>=0.5'], |
415 | 27 extras_require = { |
28 'oracle': ['cx_Oracle>=5.0.2'], | |
29 'postgres': ['psycopg2'], | |
30 }, | |
49 | 31 keywords = 'client oracle database', |
32 license = 'MIT', | |
33 platforms = ['any'], | |
50
c090fbf19376
this setup.py doesn't work
catherine@DellZilla.myhome.westell.com
parents:
49
diff
changeset
|
34 entry_points = """ |
c090fbf19376
this setup.py doesn't work
catherine@DellZilla.myhome.westell.com
parents:
49
diff
changeset
|
35 [console_scripts] |
188 | 36 sqlpython = sqlpython.mysqlpy:run |
37 editplot_sqlpython = sqlpython.editplot.bash""" | |
49 | 38 ) |
51
fe017e9fe44e
fixing features keyword in setup
catherine@DellZilla.myhome.westell.com
parents:
50
diff
changeset
|
39 |