# HG changeset patch # User catherine@DellZilla.myhome.westell.com # Date 1207106449 14400 # Node ID 8ce9e85a2a32f86d4671f1390a44fa211c4abf89 # Parent ce2b64554091204c487fa22f60287d4ba60f1960 trying a new setup.py diff -r ce2b64554091 -r 8ce9e85a2a32 setup.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/setup.py Tue Apr 01 23:20:49 2008 -0400 @@ -0,0 +1,35 @@ +from ez_setup import use_setuptools +use_setuptools() +from setuptools import setup, find_packages + +classifiers = """Development Status :: 4 - Beta +Intended Audience :: Information Technology +License :: OSI Approved :: MIT License +Programming Language :: Python +Programming Language :: SQL +Topic :: Database :: Front-Ends +Operating System :: OS Independent""".splitlines() + +setup(name="sqlpython", + version="1.4.0", + description="Command-line interface to Oracle", + long_description="Customizable alternative to Oracle's SQL*PLUS command-line interface", + author="Luca Canali", + author_email="luca.canali@cern.ch", + url="https://twiki.cern.ch/twiki/bin/view/PSSGroup/SqlPython", + packages=find_packages(), + install_requires=['pyparsing','cmd2','cx_Oracle'], + keywords = 'client oracle database', + features = 'pexpect', + classifiers = classifiers, + license = 'MIT', + maintainer = 'Catherine Devlin', + maintainer_email = 'catherine.devlin@gmail.com', + platforms = ['any'], + entry_points={ + "console_scripts": [ + "sqlpython = mysqlpy:run",] + }, + ) + +