Fleshed out setup.py in prep for PyPI upload.
This commit is contained in:
parent
5021d47ff4
commit
e68268c283
1 changed files with 27 additions and 1 deletions
28
setup.py
28
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(),
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue