-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpyproject.toml
More file actions
131 lines (116 loc) · 3.14 KB
/
pyproject.toml
File metadata and controls
131 lines (116 loc) · 3.14 KB
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "scrapy-zyte-api"
version = "0.31.0"
description = "Client library to process URLs through Zyte API"
authors = [{name = "Zyte Group Ltd", email = "info@zyte.com"}]
license = "BSD-3-Clause"
readme = "README.rst"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
requires-python = ">=3.10"
# Sync with [pinned] @ tox.ini
dependencies = [
"packaging>=20.0",
"scrapy>=2.0.1",
"zyte-api>=0.6.0",
]
[project.optional-dependencies]
# Sync with [testenv:pinned-provider] @ tox.ini
provider = [
"andi>=0.6.0",
"scrapy-poet>=0.22.3",
"web-poet>=0.17.0",
"zyte-common-items>=0.27.0",
]
x402 = [
"zyte-api[x402]>=0.8.0",
]
[project.urls]
source = "https://github.com/scrapy-plugins/scrapy-zyte-api"
docs = "https://scrapy-zyte-api.readthedocs.io/en/latest/"
[tool.bumpversion]
current_version = "0.31.0"
commit = true
tag = true
tag_name = "{new_version}"
[[tool.bumpversion.files]]
filename = 'CHANGES.rst'
search = "\\(unreleased\\)$"
replace = "({now:%Y-%m-%d})"
regex = true
[[tool.bumpversion.files]]
filename = "docs/conf.py"
[[tool.bumpversion.files]]
filename = "pyproject.toml"
parse = "version\\s*=\\s*['\"](?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
[[tool.bumpversion.files]]
filename = "scrapy_zyte_api/__version__.py"
[tool.coverage.run]
branch = true
include = [
"scrapy_zyte_api/*",
]
omit = [
"tests/*",
]
disable_warnings = [
"include-ignored",
]
[tool.hatch.build.targets.sdist]
include = [
"/docs",
"/scrapy_zyte_api",
"/tests",
"/CHANGES.rst",
"/tox.ini",
]
[tool.mypy]
check_untyped_defs = true
implicit_reexport = false
warn_no_return = false
warn_unused_ignores = true
files = [
"scrapy_zyte_api",
"tests"
]
[[tool.mypy.overrides]]
module = [
"pytest_twisted",
"scrapy_crawlera",
"scrapy_zyte_smartproxy",
]
ignore_missing_imports = true
# to be fixed
[[tool.mypy.overrides]]
module = "scrapy_poet.*"
ignore_missing_imports = true
[tool.pytest.ini_options]
junit_family = "xunit2"
testpaths = [
"scrapy_zyte_api/",
"tests/"
]
minversion = "6.0"
filterwarnings = [
"ignore::DeprecationWarning:twisted\\.web\\.http",
"ignore::DeprecationWarning:scrapy\\.core\\.downloader\\.contextfactory", # https://github.com/scrapy/scrapy/issues/3288
# scrapy-poet warnings for Scrapy 2.14:
"ignore:CollectorPipeline\\.:scrapy.exceptions.ScrapyDeprecationWarning",
"ignore:DownloaderStatsMiddleware\\.:scrapy.exceptions.ScrapyDeprecationWarning",
"ignore:.*?InjectionMiddleware\\.:scrapy.exceptions.ScrapyDeprecationWarning",
"ignore:RetryMiddleware\\.process_spider_exception\\(\\):scrapy.exceptions.ScrapyDeprecationWarning",
"ignore::scrapy.exceptions.ScrapyDeprecationWarning:scrapy_poet",
]