-
Notifications
You must be signed in to change notification settings - Fork 161
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (53 loc) · 1.57 KB
/
Copy pathpyproject.toml
File metadata and controls
62 lines (53 loc) · 1.57 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
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[project]
name = "scrapy-playwright"
dynamic = ["version"]
description = "Playwright integration for Scrapy"
readme = "README.md"
license = "BSD-3-Clause"
authors = [
{name = "Eugenio Lacuesta", email = "eugenio.lacuesta@gmail.com"},
]
requires-python = ">=3.10"
dependencies = [
"scrapy>=2.7; python_version < '3.14'",
"scrapy>=2.16; python_version >= '3.14'",
"playwright>=1.40",
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Framework :: Scrapy",
"Intended Audience :: Developers",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[project.urls]
Homepage = "https://github.com/scrapy-plugins/scrapy-playwright"
[tool.setuptools]
packages = ["scrapy_playwright"]
[tool.setuptools.dynamic]
version = {attr = "scrapy_playwright.__version__"}
[tool.black]
line-length = 99
[tool.bumpversion]
current_version = "0.0.48"
commit = true
tag = true
[[tool.bumpversion.files]]
filename = "scrapy_playwright/__init__.py"
[[tool.bumpversion.files]]
filename = "docs/changelog.md"
search = "\\(unreleased\\)$"
replace = "({now:%Y-%m-%d})"
regex = true
[tool.pytest.ini_options]
reruns = "2"