diff --git a/setup.py b/setup.py index bb12dd6..eb6ec34 100644 --- a/setup.py +++ b/setup.py @@ -33,9 +33,35 @@ execfile(os.path.join(os.path.dirname(__file__), 'sqlbase7_sa', '_version.py')) setup( name = 'SQLBase7-SA', version = __version__, - description = 'SQLAlchemy driver/dialect for Centura SQLBase v7', author = 'Lance Edgar', author_email = 'lance@edbob.org', + url = "http://sqlbase7-sa.edbob.org/", + license = "GNU GPL v3", + description = 'SQLAlchemy dialect for Centura SQLBase v7', + long_description = """ +SQLBase7-SA - SQLAlchemy dialect for Centura SQLBase v7 +------------------------------------------------------- + +This package provides a (possibly rudimentary) implementation +of a SQLAlchemy dialect for the Centura SQLBase database +engine. It is only intended (and known) to work with a very +specific version of this database, that version being 7.5.1. +""", + + classifiers = [ + 'Development Status :: 4 - Beta', + 'Environment :: Plugins', + 'Environment :: Win32 (MS Windows)', + 'Intended Audience :: Developers', + 'License :: OSI Approved :: GNU General Public License (GPL)', + 'Natural Language :: English', + 'Operating System :: Microsoft :: Windows', + 'Programming Language :: Python', + 'Programming Language :: Python :: 2.5', + 'Programming Language :: Python :: 2.6', + 'Topic :: Database', + 'Topic :: Software Development :: Libraries :: Python Modules', + ], packages = find_packages(),