-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
65 lines (58 loc) · 1.58 KB
/
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
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "zyte-parsers"
description = "Parsing of data from web pages."
authors = [{name = "Zyte Group Ltd", email = "[email protected]"}]
readme = "README.rst"
license = {file = "LICENSE"}
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
]
requires-python = ">=3.9"
dependencies = [
"attrs>=21.3.0",
"gtin-validator>=1.0.3",
"html-text",
"lxml",
"parsel",
"price-parser>=0.3.4",
"python-stdnum>=1.19",
"six", # unstated dependency of gtin-validator
"w3lib",
]
dynamic = ["version"]
[project.urls]
Source = "https://github.com/zytedata/zyte-parsers"
[tool.setuptools.dynamic]
version = {attr = "zyte_parsers.__version__"}
[tool.setuptools.package-data]
zyte_parsers = ["py.typed"]
[tool.isort]
profile = "black"
multi_line_output = 3
[[tool.mypy.overrides]]
module = [
"gtin.validator.*",
"html_text.*",
"stdnum.*",
]
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = [
"tests.*",
]
# Allow test functions to be untyped
disallow_untyped_defs = false