forked from scrapinghub/spidermon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
62 lines (60 loc) · 1.93 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
from setuptools import setup, find_packages
test_requirements = [
"pytest>=2.7.0",
"pytest-cov",
"pytest-mock",
"jinja2",
"lxml",
"premailer",
"scrapy",
"slackclient>=1.3.0,<2.0.0",
"twisted>=19.7.0",
]
setup(
name="spidermon",
version="1.13.0",
url="https://github.com/scrapinghub/spidermon",
author="Scrapinghub",
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]", "python-slugify", "six>=1.12.2"],
tests_require=test_requirements,
extras_require={
# Specific monitors and tools to support notifications and reports
"monitoring": [
"scrapy",
"Jinja2",
"slackclient>=1.3.0,<2.0.0",
"boto",
"premailer",
"sentry-sdk",
],
# Data validation
"validation": ["schematics"],
# Tools to run the tests
"tests": test_requirements,
"pep8": ["black"],
# 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.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Internet :: WWW/HTTP",
"Topic :: System :: Monitoring",
],
)