annotate setup.py @ 49:8ce9e85a2a32

trying a new setup.py
author catherine@DellZilla.myhome.westell.com
date Tue, 01 Apr 2008 23:20:49 -0400
parents
children c090fbf19376
rev   line source
49
8ce9e85a2a32 trying a new setup.py
catherine@DellZilla.myhome.westell.com
parents:
diff changeset
1 from ez_setup import use_setuptools
8ce9e85a2a32 trying a new setup.py
catherine@DellZilla.myhome.westell.com
parents:
diff changeset
2 use_setuptools()
8ce9e85a2a32 trying a new setup.py
catherine@DellZilla.myhome.westell.com
parents:
diff changeset
3 from setuptools import setup, find_packages
8ce9e85a2a32 trying a new setup.py
catherine@DellZilla.myhome.westell.com
parents:
diff changeset
4
8ce9e85a2a32 trying a new setup.py
catherine@DellZilla.myhome.westell.com
parents:
diff changeset
5 classifiers = """Development Status :: 4 - Beta
8ce9e85a2a32 trying a new setup.py
catherine@DellZilla.myhome.westell.com
parents:
diff changeset
6 Intended Audience :: Information Technology
8ce9e85a2a32 trying a new setup.py
catherine@DellZilla.myhome.westell.com
parents:
diff changeset
7 License :: OSI Approved :: MIT License
8ce9e85a2a32 trying a new setup.py
catherine@DellZilla.myhome.westell.com
parents:
diff changeset
8 Programming Language :: Python
8ce9e85a2a32 trying a new setup.py
catherine@DellZilla.myhome.westell.com
parents:
diff changeset
9 Programming Language :: SQL
8ce9e85a2a32 trying a new setup.py
catherine@DellZilla.myhome.westell.com
parents:
diff changeset
10 Topic :: Database :: Front-Ends
8ce9e85a2a32 trying a new setup.py
catherine@DellZilla.myhome.westell.com
parents:
diff changeset
11 Operating System :: OS Independent""".splitlines()
8ce9e85a2a32 trying a new setup.py
catherine@DellZilla.myhome.westell.com
parents:
diff changeset
12
8ce9e85a2a32 trying a new setup.py
catherine@DellZilla.myhome.westell.com
parents:
diff changeset
13 setup(name="sqlpython",
8ce9e85a2a32 trying a new setup.py
catherine@DellZilla.myhome.westell.com
parents:
diff changeset
14 version="1.4.0",
8ce9e85a2a32 trying a new setup.py
catherine@DellZilla.myhome.westell.com
parents:
diff changeset
15 description="Command-line interface to Oracle",
8ce9e85a2a32 trying a new setup.py
catherine@DellZilla.myhome.westell.com
parents:
diff changeset
16 long_description="Customizable alternative to Oracle's SQL*PLUS command-line interface",
8ce9e85a2a32 trying a new setup.py
catherine@DellZilla.myhome.westell.com
parents:
diff changeset
17 author="Luca Canali",
8ce9e85a2a32 trying a new setup.py
catherine@DellZilla.myhome.westell.com
parents:
diff changeset
18 author_email="luca.canali@cern.ch",
8ce9e85a2a32 trying a new setup.py
catherine@DellZilla.myhome.westell.com
parents:
diff changeset
19 url="https://twiki.cern.ch/twiki/bin/view/PSSGroup/SqlPython",
8ce9e85a2a32 trying a new setup.py
catherine@DellZilla.myhome.westell.com
parents:
diff changeset
20 packages=find_packages(),
8ce9e85a2a32 trying a new setup.py
catherine@DellZilla.myhome.westell.com
parents:
diff changeset
21 install_requires=['pyparsing','cmd2','cx_Oracle'],
8ce9e85a2a32 trying a new setup.py
catherine@DellZilla.myhome.westell.com
parents:
diff changeset
22 keywords = 'client oracle database',
8ce9e85a2a32 trying a new setup.py
catherine@DellZilla.myhome.westell.com
parents:
diff changeset
23 features = 'pexpect',
8ce9e85a2a32 trying a new setup.py
catherine@DellZilla.myhome.westell.com
parents:
diff changeset
24 classifiers = classifiers,
8ce9e85a2a32 trying a new setup.py
catherine@DellZilla.myhome.westell.com
parents:
diff changeset
25 license = 'MIT',
8ce9e85a2a32 trying a new setup.py
catherine@DellZilla.myhome.westell.com
parents:
diff changeset
26 maintainer = 'Catherine Devlin',
8ce9e85a2a32 trying a new setup.py
catherine@DellZilla.myhome.westell.com
parents:
diff changeset
27 maintainer_email = 'catherine.devlin@gmail.com',
8ce9e85a2a32 trying a new setup.py
catherine@DellZilla.myhome.westell.com
parents:
diff changeset
28 platforms = ['any'],
8ce9e85a2a32 trying a new setup.py
catherine@DellZilla.myhome.westell.com
parents:
diff changeset
29 entry_points={
8ce9e85a2a32 trying a new setup.py
catherine@DellZilla.myhome.westell.com
parents:
diff changeset
30 "console_scripts": [
8ce9e85a2a32 trying a new setup.py
catherine@DellZilla.myhome.westell.com
parents:
diff changeset
31 "sqlpython = mysqlpy:run",]
8ce9e85a2a32 trying a new setup.py
catherine@DellZilla.myhome.westell.com
parents:
diff changeset
32 },
8ce9e85a2a32 trying a new setup.py
catherine@DellZilla.myhome.westell.com
parents:
diff changeset
33 )
8ce9e85a2a32 trying a new setup.py
catherine@DellZilla.myhome.westell.com
parents:
diff changeset
34
8ce9e85a2a32 trying a new setup.py
catherine@DellZilla.myhome.westell.com
parents:
diff changeset
35