Skip to content

Commit 4495bb5

Browse files
committed
Update IRIs and contact information.
1 parent d08145c commit 4495bb5

3 files changed

Lines changed: 12 additions & 16 deletions

File tree

postgresql/__init__.py

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,13 @@
11
##
22
# py-postgresql root package
3-
# http://python.projects.postgresql.org
3+
# http://github.com/python-postgres/fe
44
##
55
"""
66
py-postgresql is a Python package for using PostgreSQL. This includes low-level
7-
protocol tools, a driver(PG-API and DB-API), and cluster management tools.
7+
protocol tools, a driver(PG-API and DB-API 2.0), and cluster management tools.
88
9-
If it's not documented in the narratives, `postgresql.documentation.index`, then
10-
the stability of the APIs should *not* be trusted.
11-
12-
See <http://postgresql.org> for more information about PostgreSQL.
9+
See <http://postgresql.org> for more information about PostgreSQL and <http://python.org>
10+
for information about Python.
1311
"""
1412
__all__ = [
1513
'__author__',

postgresql/project.py

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
1-
'project information'
1+
"""
2+
Project information.
3+
"""
24

3-
#: project name
45
name = 'py-postgresql'
5-
6-
#: IRI based project identity
7-
identity = 'http://python.projects.postgresql.org/'
6+
identity = 'http://github.com/python-postgres/fe'
87

98
meaculpa = 'Python+Postgres'
10-
contact = 'python-general@pgfoundry.org'
119
abstract = 'Driver and tools library for PostgreSQL'
1210

1311
version_info = (1, 2, 1)

postgresql/release/distutils.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@
2020

2121
LONG_DESCRIPTION = """
2222
py-postgresql is a set of Python modules providing interfaces to various parts
23-
of PostgreSQL. Notably, it provides a pure-Python driver + C optimizations for
23+
of PostgreSQL. Primarily, it provides a pure-Python driver with some C optimizations for
2424
querying a PostgreSQL database.
2525
26-
http://python.projects.postgresql.org
26+
http://github.com/python-postgres/fe
2727
2828
Features:
2929
@@ -160,9 +160,9 @@ def standard_setup_keywords(build_extensions = True, prefix = default_prefix):
160160
'description' : 'PostgreSQL driver and tools library.',
161161
'long_description' : LONG_DESCRIPTION,
162162
'author' : 'James William Pye',
163-
'author_email' : 'x@jwp.name',
163+
'author_email' : 'james.pye@gmail.com',
164164
'maintainer' : 'James William Pye',
165-
'maintainer_email' : 'python-general@pgfoundry.org',
165+
'maintainer_email' : 'james.pye@gmail.com',
166166
'url' : url,
167167
'classifiers' : CLASSIFIERS,
168168
'packages' : list(prefixed_packages(prefix = prefix)),

0 commit comments

Comments
 (0)