forked from timbertson/python-readability
-
Notifications
You must be signed in to change notification settings - Fork 351
Expand file tree
/
Copy pathpyproject.toml
More file actions
28 lines (25 loc) · 792 Bytes
/
Copy pathpyproject.toml
File metadata and controls
28 lines (25 loc) · 792 Bytes
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
[tool.poetry]
name = "readability-lxml"
version = "0.9"
description = "fast html to text parser (article readability tool) with python 3 support"
authors = ["Yuri Baburov <burchik@gmail.com>"]
license = "Apache License 2.0"
readme = "README.md"
packages = [
{ include = "readability" },
]
include = [
{ path = "NOTICE", format = ["sdist", "wheel"] },
]
[tool.poetry.dependencies]
python = ">=3.8.2,<3.15"
chardet = "^5.2.0"
cssselect = [
{ version = "~1.2", markers = "python_version < '3.9'" },
{ version = "~1.3", markers = "python_version >= '3.9'" }
]
lxml = {extras = ["html-clean"], version = ">=5.4,<7"}
lxml-html-clean = {markers = "python_version < \"3.11\"", version = "^0.4.2"}
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"