Fleshed out setup.py in prep for PyPI upload.

This commit is contained in:
Lance Edgar 2010-05-28 10:17:15 -05:00
parent 5021d47ff4
commit e68268c283

View file

@ -33,9 +33,35 @@ execfile(os.path.join(os.path.dirname(__file__), 'sqlbase7_sa', '_version.py'))
setup( setup(
name = 'SQLBase7-SA', name = 'SQLBase7-SA',
version = __version__, version = __version__,
description = 'SQLAlchemy driver/dialect for Centura SQLBase v7',
author = 'Lance Edgar', author = 'Lance Edgar',
author_email = 'lance@edbob.org', 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(), packages = find_packages(),