-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
30 lines (29 loc) · 918 Bytes
/
pyproject.toml
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
[project]
name = "scrapy-sentry-errors"
version = "1.0.0"
description = "Scrapy extension that logs errors to Sentry"
authors = [
{name = "City Bureau", email = "[email protected]"}
]
dependencies = [
'scrapy>=2.5',
'sentry-sdk>=1.0.0',
]
requires-python = ">=3.8"
readme = "README.md"
license = {text = "BSD"}
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Environment :: Console',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Internet :: WWW/HTTP',
]
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"