forked from buriy/python-readability
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
25 lines (22 loc) · 726 Bytes
/
pyproject.toml
File metadata and controls
25 lines (22 loc) · 726 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
[tool.poetry]
name = "readability-lxml"
version = "0.8.4.1"
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" },
]
[tool.poetry.dependencies]
python = ">=3.8.2,<3.14"
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.0"}
lxml-html-clean = {markers = "python_version < \"3.11\"", version = "^0.4.2"}
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"