annotate setup.py @ 431:cac7333f9ff5

beginning rework of threaded metadata discovery
author catherine@dellzilla
date Tue, 26 Jan 2010 09:46:16 -0500
parents e728bf6336df
children cd015f2bff44
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",
380
catherine@cordelia
parents: 372
diff changeset
12 version="1.6.8",
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,
417
fc3e99c9e3e5 grep fixed on postgresql
catherine@bothari
parents: 415
diff changeset
20 install_requires=['pyparsing','cmd2>=0.5.6','gerald>=0.3.1',
422
e728bf6336df dependency on sqlalchemy 0.5.5
catherine@DellZilla
parents: 417
diff changeset
21 'genshi>=0.5','sqlalchemy>=0.5.5'],
415
3a2db0db302f must synch
catherine@bothari
parents: 396
diff changeset
22 extras_require = {
3a2db0db302f must synch
catherine@bothari
parents: 396
diff changeset
23 'oracle': ['cx_Oracle>=5.0.2'],
3a2db0db302f must synch
catherine@bothari
parents: 396
diff changeset
24 'postgres': ['psycopg2'],
3a2db0db302f must synch
catherine@bothari
parents: 396
diff changeset
25 },
49
8ce9e85a2a32 trying a new setup.py
catherine@DellZilla.myhome.westell.com
parents:
diff changeset
26 keywords = 'client oracle database',
8ce9e85a2a32 trying a new setup.py
catherine@DellZilla.myhome.westell.com
parents:
diff changeset
27 license = 'MIT',
8ce9e85a2a32 trying a new setup.py
catherine@DellZilla.myhome.westell.com
parents:
diff changeset
28 platforms = ['any'],
50
c090fbf19376 this setup.py doesn't work
catherine@DellZilla.myhome.westell.com
parents: 49
diff changeset
29 entry_points = """
c090fbf19376 this setup.py doesn't work
catherine@DellZilla.myhome.westell.com
parents: 49
diff changeset
30 [console_scripts]
188
4a639619814a sending changes to dellzilla
catherine@dellzilla
parents: 135
diff changeset
31 sqlpython = sqlpython.mysqlpy:run
4a639619814a sending changes to dellzilla
catherine@dellzilla
parents: 135
diff changeset
32 editplot_sqlpython = sqlpython.editplot.bash"""
49
8ce9e85a2a32 trying a new setup.py
catherine@DellZilla.myhome.westell.com
parents:
diff changeset
33 )
51
fe017e9fe44e fixing features keyword in setup
catherine@DellZilla.myhome.westell.com
parents: 50
diff changeset
34