forked from scrapinghub/spidermon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
67 lines (65 loc) · 2.01 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
from setuptools import find_packages, setup
test_requirements = [
"pytest>=2.7.0",
"pytest-cov",
"pytest-mock",
"jinja2",
"boto3",
"lxml",
"premailer",
"scrapinghub",
"scrapinghub-entrypoint-scrapy",
"scrapy",
"slack-sdk",
"twisted>=19.7.0",
"itemadapter",
]
setup(
name="spidermon",
version="1.19.0",
url="https://github.com/scrapinghub/spidermon",
author="Zyte",
author_email="[email protected]",
description=("Spidermon is a framework to build monitors for Scrapy spiders."),
long_description=("Spidermon is a framework to build monitors for Scrapy spiders."),
license="BSD",
packages=find_packages(),
package_data={"spidermon": ["VERSION"]},
zip_safe=False,
include_package_data=True,
install_requires=["jsonschema[format]>=3.2.0", "python-slugify"],
tests_require=test_requirements,
extras_require={
# Specific monitors and tools to support notifications and reports
"monitoring": [
"scrapy",
"Jinja2",
"scrapinghub",
"slack-sdk",
"boto",
"boto3",
"premailer",
"sentry-sdk",
],
# Tools to run the tests
"tests": test_requirements,
# Tools to build and publish the documentation
"docs": ["sphinx", "sphinx-rtd-theme", "s3cmd"],
},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Framework :: Scrapy",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Internet :: WWW/HTTP",
"Topic :: System :: Monitoring",
],
python_requires=">=3.8",
)