diff --git a/setup.py b/setup.py index 934ec82f..02499455 100644 --- a/setup.py +++ b/setup.py @@ -4,10 +4,17 @@ name="spidermon", version="1.23.0", url="https://github.com/scrapinghub/spidermon", + project_urls={ + "Documentation": "https://spidermon.readthedocs.io/", + "Source": "https://github.com/scrapinghub/spidermon", + "Tracker": "https://github.com/scrapinghub/spidermon/issues", + "Release notes": "https://spidermon.readthedocs.io/en/latest/changelog.html", + }, author="Zyte", author_email="opensource@zyte.com", description=("Spidermon is a framework to build monitors for Scrapy spiders."), - long_description=("Spidermon is a framework to build monitors for Scrapy spiders."), + long_description=open("README.rst", encoding="utf-8").read(), + long_description_content_type="text/x-rst", license="BSD", packages=find_packages(), package_data={"spidermon": ["VERSION"]},