annotate setup.py @ 182:2ab3a24d7974

noSpecialPush
author catherine@dellzilla
date Fri, 07 Nov 2008 16:14:21 -0500
parents f19e4c198251
children
rev   line source
49
8ce9e85a2a32 trying a new setup.py
catherine@DellZilla.myhome.westell.com
parents:
diff changeset
1 from setuptools import setup, find_packages
8ce9e85a2a32 trying a new setup.py
catherine@DellZilla.myhome.westell.com
parents:
diff changeset
2
8ce9e85a2a32 trying a new setup.py
catherine@DellZilla.myhome.westell.com
parents:
diff changeset
3 classifiers = """Development Status :: 4 - Beta
8ce9e85a2a32 trying a new setup.py
catherine@DellZilla.myhome.westell.com
parents:
diff changeset
4 Intended Audience :: Information Technology
8ce9e85a2a32 trying a new setup.py
catherine@DellZilla.myhome.westell.com
parents:
diff changeset
5 License :: OSI Approved :: MIT License
8ce9e85a2a32 trying a new setup.py
catherine@DellZilla.myhome.westell.com
parents:
diff changeset
6 Programming Language :: Python
8ce9e85a2a32 trying a new setup.py
catherine@DellZilla.myhome.westell.com
parents:
diff changeset
7 Programming Language :: SQL
8ce9e85a2a32 trying a new setup.py
catherine@DellZilla.myhome.westell.com
parents:
diff changeset
8 Topic :: Database :: Front-Ends
8ce9e85a2a32 trying a new setup.py
catherine@DellZilla.myhome.westell.com
parents:
diff changeset
9 Operating System :: OS Independent""".splitlines()
8ce9e85a2a32 trying a new setup.py
catherine@DellZilla.myhome.westell.com
parents:
diff changeset
10
8ce9e85a2a32 trying a new setup.py
catherine@DellZilla.myhome.westell.com
parents:
diff changeset
11 setup(name="sqlpython",
151
802d8df993da midway through making plots saveable
catherine@dellzilla
parents: 150
diff changeset
12 version="1.5.0",
49
8ce9e85a2a32 trying a new setup.py
catherine@DellZilla.myhome.westell.com
parents:
diff changeset
13 description="Command-line interface to Oracle",
8ce9e85a2a32 trying a new setup.py
catherine@DellZilla.myhome.westell.com
parents:
diff changeset
14 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
15 author="Luca Canali",
8ce9e85a2a32 trying a new setup.py
catherine@DellZilla.myhome.westell.com
parents:
diff changeset
16 author_email="luca.canali@cern.ch",
8ce9e85a2a32 trying a new setup.py
catherine@DellZilla.myhome.westell.com
parents:
diff changeset
17 url="https://twiki.cern.ch/twiki/bin/view/PSSGroup/SqlPython",
8ce9e85a2a32 trying a new setup.py
catherine@DellZilla.myhome.westell.com
parents:
diff changeset
18 packages=find_packages(),
85
b336d049cac7 bugs found during gcoug talk prep
catherine@localhost
parents: 66
diff changeset
19 include_package_data=True,
182
2ab3a24d7974 noSpecialPush
catherine@dellzilla
parents: 175
diff changeset
20 install_requires=['pyparsing','cmd2>=0.4.3','cx_Oracle','genshi>=0.5'],
49
8ce9e85a2a32 trying a new setup.py
catherine@DellZilla.myhome.westell.com
parents:
diff changeset
21 keywords = 'client oracle database',
8ce9e85a2a32 trying a new setup.py
catherine@DellZilla.myhome.westell.com
parents:
diff changeset
22 license = 'MIT',
8ce9e85a2a32 trying a new setup.py
catherine@DellZilla.myhome.westell.com
parents:
diff changeset
23 platforms = ['any'],
50
c090fbf19376 this setup.py doesn't work
catherine@DellZilla.myhome.westell.com
parents: 49
diff changeset
24 entry_points = """
c090fbf19376 this setup.py doesn't work
catherine@DellZilla.myhome.westell.com
parents: 49
diff changeset
25 [console_scripts]
156
4927f901a634 adding bar charts
catherine@dellzilla
parents: 155
diff changeset
26 sqlpython = sqlpython.mysqlpy:run
4927f901a634 adding bar charts
catherine@dellzilla
parents: 155
diff changeset
27 editplot_sqlpython = sqlpython.editplot.bash"""
49
8ce9e85a2a32 trying a new setup.py
catherine@DellZilla.myhome.westell.com
parents:
diff changeset
28 )
51
fe017e9fe44e fixing features keyword in setup
catherine@DellZilla.myhome.westell.com
parents: 50
diff changeset
29