Changeset 847 for pg8000/trunk/setup.py
- Timestamp:
- 03/13/07 15:00:23 (2 years ago)
- Files:
-
- pg8000/trunk/setup.py (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
pg8000/trunk/setup.py
r829 r847 3 3 from distutils.core import setup 4 4 5 long_description = """6 pg8000 is a Pure-Python interface to the PostgreSQL database engine. It is one5 long_description = \ 6 """pg8000 is a Pure-Python interface to the PostgreSQL database engine. It is one 7 7 of many PostgreSQL interfaces for the Python programming language. pg8000 is 8 8 somewhat distinctive in that it is written entirely in Python and does not rely 9 9 on any external libraries (such as a compiled python module, or PostgreSQL's 10 libpq library). 10 libpq library). pg8000 supports the standard Python DB-API version 2.0. 11 11 12 12 pg8000's name comes from the belief that it is probably about the 8000th 13 PostgreSQL interface for Python. 14 """ 13 PostgreSQL interface for Python.""" 15 14 16 15 setup( 17 16 name="pg8000", 18 version="1.0 1",17 version="1.02", 19 18 description="PostgreSQL interface library", 20 19 long_description=long_description, … … 22 21 author_email="biziqe@mathieu.fenniak.net", 23 22 url="http://pybrary.net/pg8000/", 24 download_url="http://pybrary.net/pg8000/pg8000-1.0 1.tar.gz",23 download_url="http://pybrary.net/pg8000/pg8000-1.02.tar.gz", 25 24 classifiers = [ 26 "Development Status :: 3 - Alpha",25 "Development Status :: 4 - Beta", 27 26 "Intended Audience :: Developers", 28 27 "License :: OSI Approved :: BSD License", … … 32 31 "Topic :: Software Development :: Libraries :: Python Modules", 33 32 ], 34 py_modules = ["pg8000" ],33 py_modules = ["pg8000", "pg8000_dbapi"], 35 34 ) 36 35
