-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (33 loc) · 937 Bytes
/
pyproject.toml
File metadata and controls
37 lines (33 loc) · 937 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
29
30
31
32
33
34
35
36
37
[build-system]
requires = ["setuptools>=77.0.3"]
build-backend = "setuptools.build_meta"
[project]
name = "html5-parser"
version = "0.4.12"
authors = [
{name = "Kovid Goyal", email = "redacted@acme.com"},
]
description = "Fast C based HTML 5 parsing for python"
license = "Apache-2.0"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Text Processing",
"Topic :: Text Processing :: Markup",
"Topic :: Text Processing :: Markup :: HTML",
"Topic :: Text Processing :: Markup :: XML",
]
dependencies = [
"chardet",
"lxml>=3.8.0",
]
[project.urls]
Homepage = "https://html5-parser.readthedocs.io"
[project.optional-dependencies]
soup = ["beautifulsoup4"]
[tool.setuptools]
package-dir = {"" = "src"}
packages = ["html5_parser"]