Changeset 847

Show
Ignore:
Timestamp:
03/13/07 15:00:23 (2 years ago)
Author:
mfenniak
Message:

update setup.py for version 1.02.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • pg8000/trunk/setup.py

    r829 r847  
    33from distutils.core import setup 
    44 
    5 long_description = """ 
    6 pg8000 is a Pure-Python interface to the PostgreSQL database engine.  It is one 
     5long_description = \ 
     6"""pg8000 is a Pure-Python interface to the PostgreSQL database engine.  It is one 
    77of many PostgreSQL interfaces for the Python programming language.  pg8000 is 
    88somewhat distinctive in that it is written entirely in Python and does not rely 
    99on any external libraries (such as a compiled python module, or PostgreSQL's 
    10 libpq library). 
     10libpq library).  pg8000 supports the standard Python DB-API version 2.0. 
    1111 
    1212pg8000's name comes from the belief that it is probably about the 8000th 
    13 PostgreSQL interface for Python. 
    14 """ 
     13PostgreSQL interface for Python.""" 
    1514 
    1615setup( 
    1716        name="pg8000", 
    18         version="1.01", 
     17        version="1.02", 
    1918        description="PostgreSQL interface library", 
    2019        long_description=long_description, 
     
    2221        author_email="biziqe@mathieu.fenniak.net", 
    2322        url="http://pybrary.net/pg8000/", 
    24         download_url="http://pybrary.net/pg8000/pg8000-1.01.tar.gz", 
     23        download_url="http://pybrary.net/pg8000/pg8000-1.02.tar.gz", 
    2524        classifiers = [ 
    26             "Development Status :: 3 - Alpha", 
     25            "Development Status :: 4 - Beta", 
    2726            "Intended Audience :: Developers", 
    2827            "License :: OSI Approved :: BSD License", 
     
    3231            "Topic :: Software Development :: Libraries :: Python Modules", 
    3332        ], 
    34         py_modules = ["pg8000"], 
     33        py_modules = ["pg8000", "pg8000_dbapi"], 
    3534    ) 
    3635