annotate setup.py @ 369:15ba1cb88e4c

Added tag 1.6.7 for changeset 477f0bf652b2
author catherine@cordelia
date Mon, 06 Jul 2009 08:48:27 -0400
parents 477f0bf652b2
children 832ec6607b22
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",
368
477f0bf652b2 version to 1.6.7
catherine@cordelia
parents: 363
diff changeset
12 version="1.6.7",
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",
300
154c2e44abce changed project homepage to doc page
catherine@dellzilla
parents: 293
diff changeset
17 url="http://packages.python.org/sqlpython",
49
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,
363
5e98e7917de8 require cx_Oracle 5.0.2
catherine@cordelia
parents: 359
diff changeset
20 install_requires=['pyparsing','cmd2>=0.5.4','cx_Oracle>=5.0.2',
358
cdd403e73132 v 1.6.6
catherine@cordelia
parents: 357
diff changeset
21 'genshi>=0.5','sqlalchemy'],
49
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 license = 'MIT',
8ce9e85a2a32 trying a new setup.py
catherine@DellZilla.myhome.westell.com
parents:
diff changeset
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]
188
4a639619814a sending changes to dellzilla
catherine@dellzilla
parents: 135
diff changeset
27 sqlpython = sqlpython.mysqlpy:run
4a639619814a sending changes to dellzilla
catherine@dellzilla
parents: 135
diff changeset
28 editplot_sqlpython = sqlpython.editplot.bash"""
49
8ce9e85a2a32 trying a new setup.py
catherine@DellZilla.myhome.westell.com
parents:
diff changeset
29 )
51
fe017e9fe44e fixing features keyword in setup
catherine@DellZilla.myhome.westell.com
parents: 50
diff changeset
30