summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Kögl <stefan@skoegl.net>2018-04-02 10:53:35 +0200
committerStefan Kögl <stefan@skoegl.net>2018-04-02 10:53:35 +0200
commit3c621da9b77ee57dcfd42887b460e1ffb66528b2 (patch)
tree3b5b104fff1b81e943a0970d76ff5db95941f680
parent7e55ad6a39de398eb83eb67431b28966e42aac36 (diff)
downloadpython-json-patch-3c621da9b77ee57dcfd42887b460e1ffb66528b2.tar.gz
Add project URLs to setup.py
-rw-r--r--setup.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/setup.py b/setup.py
index 1051ecc..1397f9a 100644
--- a/setup.py
+++ b/setup.py
@@ -79,5 +79,13 @@ setup(name=PACKAGE,
scripts=['bin/jsondiff', 'bin/jsonpatch'],
classifiers=CLASSIFIERS,
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*',
+ project_urls={
+ 'Website': 'https://github.com/stefankoegl/python-json-patch',
+ 'Repository': 'https://github.com/stefankoegl/python-json-patch.git',
+ 'Documentation': "https://python-json-patch.readthedocs.org/",
+ 'PyPI': 'https://pypi.org/pypi/jsonpatch',
+ 'Tests': 'https://travis-ci.org/stefankoegl/python-json-patch',
+ 'Test Coverage': 'https://coveralls.io/r/stefankoegl/python-json-patch',
+ },
**OPTIONS
)