-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
83 lines (76 loc) · 2.28 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
[project]
name = "data_extractor"
authors = [{ name = "林玮 (Jade Lin)", email = "[email protected]" }]
description = "Combine XPath, CSS Selectors and JSONPath for Web data extracting."
readme = "README.rst"
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"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",
"Development Status :: 5 - Production/Stable",
"Operating System :: POSIX",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
]
keywords = [
"data-extractor",
"data-extraction",
"xpath",
"css-selectors",
"jsonpath",
]
dependencies = []
requires-python = ">=3.9"
license = { text = "MIT" }
dynamic = ["version"]
[project.urls]
homepage = "https://github.com/linw1995/data_extractor"
repository = "https://github.com/linw1995/data_extractor"
documentation = "https://data-extractor.readthedocs.io/en/latest/"
[project.optional-dependencies]
lxml = ["lxml >= 4.3, < 6"]
cssselect = ["lxml >= 4.3, < 6", "cssselect >= 1.0.3, < 2"]
jsonpath-extractor = ["jsonpath-extractor >= 0.5, < 0.9"]
jsonpath-rw = ["jsonpath-rw >= 1.4, < 2"]
jsonpath-rw-ext = ["jsonpath-rw >= 1.4, < 2", "jsonpath-rw-ext >= 1.2, < 2"]
[build-system]
requires = ["pdm-pep517[setuptools]"]
build-backend = "pdm.pep517.api"
[tool.commitizen]
name = "cz_conventional_commits"
version = "0.9.0"
tag_format = "v$version"
[tool.pdm]
includes = [
"data_extractor/*.py",
"data_extractor/py.typed",
"data_extractor/contrib/",
]
version = { use_scm = true }
[tool.pdm.dev-dependencies]
docs = [
"lxml >= 4.3, < 6",
"cssselect >= 1.0.3, < 2",
"jsonpath-extractor >= 0.5, < 0.9",
"jsonpath-rw >= 1.4, < 2",
"jsonpath-rw-ext >= 1.2, < 2",
"sphinx ~= 7.4",
]
build_readme = ["click >= 7.1.2, < 8", "docutils >= 0.16", "pygments ~= 2.8"]
test = ["pytest >= 6, < 8", "pytest-cov >= 2.7.1, < 3"]
test-mypy-plugin = [
"pytest >= 6, < 8",
"pytest-cov >= 2.7.1, < 3",
"pytest-mypy-plugins ~= 1.6",
"mypy~=0.930",
]
[[tool.pdm.source]]
name = "pypi"
url = "https://pypi.org/simple"
verify_ssl = true