mirror of
https://github.com/psycopg/psycopg2.git
synced 2024-11-10 19:16:34 +03:00
We now distribute documentation.
This commit is contained in:
parent
7db16edad3
commit
73846966a2
|
@ -1,4 +1,8 @@
|
|||
2006-01-01 Federico Di Gregorio <fog@initd.org>
|
||||
2006-01-01 Federico Di Gregorio <fog@initd.org>
|
||||
|
||||
* MANIFEST.in: we now distrbute pre-built documentation (still need
|
||||
to add to setup.py the code necessary to build docs as part of the
|
||||
build process.)
|
||||
|
||||
* psycopg/connection_int.c: PostgreSQL encoding names are now force
|
||||
uppercase (after all PostgreSQL documentation reports them this way.)
|
||||
|
|
|
@ -9,3 +9,4 @@ recursive-include scripts *.py *.sh
|
|||
include scripts/maketypes.sh scripts/buildtypes.py
|
||||
include AUTHORS README INSTALL ChangeLog
|
||||
include PKG-INFO MANIFEST.in MANIFEST setup.py setup.cfg
|
||||
recursive-include doc *.rst *.css *.html
|
||||
|
|
8
setup.py
8
setup.py
|
@ -168,13 +168,13 @@ class psycopg_build_ext(build_ext):
|
|||
|
||||
fink installs lots of goodies in /sw/... - make sure we check there
|
||||
"""
|
||||
self.include_dirs.append("/sw/include")
|
||||
self.include_dirs.append("/sw/include")
|
||||
self.include_dirs.append("/sw/include/postgresql")
|
||||
self.include_dirs.append("/sw/include/postgresql/server")
|
||||
self.include_dirs.append("/sw/include/postgresql/server")
|
||||
self.library_dirs.append("/sw/lib")
|
||||
self.include_dirs.append("/opt/local/include")
|
||||
self.include_dirs.append("/opt/local/include")
|
||||
self.include_dirs.append("/opt/local/include/postgresql")
|
||||
self.include_dirs.append("/opt/local/include/postgresql/server")
|
||||
self.include_dirs.append("/opt/local/include/postgresql/server")
|
||||
self.library_dirs.append("/opt/local/lib")
|
||||
self.library_dirs.append("/usr/lib")
|
||||
self.libraries.append('ssl')
|
||||
|
|
Loading…
Reference in New Issue
Block a user