Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update setup.py #458

Merged
merged 3 commits into from
Dec 10, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(),
Gallaecio marked this conversation as resolved.
Show resolved Hide resolved
long_description_content_type="text/x-rst",
license="BSD",
packages=find_packages(),
package_data={"spidermon": ["VERSION"]},
Expand Down
Loading