From c3c625c163aaed577d1c03e223a6e9de74238b73 Mon Sep 17 00:00:00 2001 From: Grey Baker Date: Sat, 23 Feb 2019 13:47:47 +0000 Subject: [PATCH] Add project_urls to setup.py, with links to source and documentation --- setup.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 39ea2eef..d26840de 100644 --- a/setup.py +++ b/setup.py @@ -639,4 +639,8 @@ setup(name="psycopg2", package_dir={'psycopg2': 'lib'}, packages=['psycopg2'], cmdclass={'build_ext': psycopg_build_ext}, - ext_modules=ext) + ext_modules=ext, + project_urls={ + 'Source': 'https://github.com/psycopg/psycopg2', + 'Documentation': 'http://initd.org/psycopg/docs/', + })