forked from mfenniak/pg8000
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
43 lines (37 loc) · 1.57 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#!/usr/bin/env python
import ez_setup
ez_setup.use_setuptools()
from setuptools import setup
long_description = \
"""pg8000 is a Pure-Python interface to the PostgreSQL database engine. It is one
of many PostgreSQL interfaces for the Python programming language. pg8000 is
somewhat distinctive in that it is written entirely in Python and does not rely
on any external libraries (such as a compiled python module, or PostgreSQL's
libpq library). pg8000 supports the standard Python DB-API version 2.0.
pg8000's name comes from the belief that it is probably about the 8000th
PostgreSQL interface for Python."""
setup(
name="pg8000",
version="1.07",
description="PostgreSQL interface library",
long_description=long_description,
author="Mathieu Fenniak",
author_email="biziqe@mathieu.fenniak.net",
url="http://pybrary.net/pg8000/",
download_url="http://pybrary.net/pg8000/dist/pg8000-1.07.tar.gz",
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Programming Language :: Python :: 2.5",
"Programming Language :: Python :: 2.6",
"Operating System :: OS Independent",
"Topic :: Database :: Front-Ends",
"Topic :: Software Development :: Libraries :: Python Modules",
],
keywords="postgresql dbapi",
zip_safe=True,
tests_require=["pytz"],
packages = ("pg8000",),
)