| 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). |
|---|
| 11 |
|
|---|
| 12 |
pg8000's name comes from the belief that it is probably about the 8000th |
|---|
| 13 |
PostgreSQL interface for Python. |
|---|
| 14 |
""" |
|---|
| 15 |
|
|---|
| 16 |
setup( |
|---|
| 17 |
name="pg8000", |
|---|
| 18 |
version="1.0", |
|---|
| 19 |
description="PostgreSQL interface library", |
|---|
| 20 |
long_description=long_description, |
|---|
| 21 |
author="Mathieu Fenniak", |
|---|
| 22 |
author_email="biziqe@mathieu.fenniak.net", |
|---|
| 23 |
url="http://pybrary.net/pg8000/", |
|---|
| 24 |
download_url="http://pybrary.net/pg8000/pyPdf-1.0.tar.gz", |
|---|
| 25 |
classifiers = [ |
|---|
| 26 |
"Development Status :: 3 - Alpha", |
|---|
| 27 |
"Intended Audience :: Developers", |
|---|
| 28 |
"License :: OSI Approved :: BSD License", |
|---|
| 29 |
"Programming Language :: Python", |
|---|
| 30 |
"Operating System :: OS Independent", |
|---|
| 31 |
"Topic :: Database :: Front-Ends" |
|---|
| 32 |
"Topic :: Software Development :: Libraries :: Python Modules", |
|---|
| 33 |
], |
|---|
| 34 |
py_modules = ["pg8000"], |
|---|
| 35 |
) |
|---|
| 36 |
|
|---|