root/pg8000/trunk/setup.py

Revision 847, 1.3 kB (checked in by mfenniak, 2 years ago)

update setup.py for version 1.02.

Line 
1 #!/usr/bin/env python
2
3 from distutils.core import setup
4
5 long_description = \
6 """pg8000 is a Pure-Python interface to the PostgreSQL database engine.  It is one
7 of many PostgreSQL interfaces for the Python programming language.  pg8000 is
8 somewhat distinctive in that it is written entirely in Python and does not rely
9 on any external libraries (such as a compiled python module, or PostgreSQL's
10 libpq library).  pg8000 supports the standard Python DB-API version 2.0.
11
12 pg8000's name comes from the belief that it is probably about the 8000th
13 PostgreSQL interface for Python."""
14
15 setup(
16         name="pg8000",
17         version="1.02",
18         description="PostgreSQL interface library",
19         long_description=long_description,
20         author="Mathieu Fenniak",
21         author_email="biziqe@mathieu.fenniak.net",
22         url="http://pybrary.net/pg8000/",
23         download_url="http://pybrary.net/pg8000/pg8000-1.02.tar.gz",
24         classifiers = [
25             "Development Status :: 4 - Beta",
26             "Intended Audience :: Developers",
27             "License :: OSI Approved :: BSD License",
28             "Programming Language :: Python",
29             "Operating System :: OS Independent",
30             "Topic :: Database :: Front-Ends",
31             "Topic :: Software Development :: Libraries :: Python Modules",
32         ],
33         py_modules = ["pg8000", "pg8000_dbapi"],
34     )
35
Note: See TracBrowser for help on using the browser.