-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (31 loc) · 875 Bytes
/
pyproject.toml
File metadata and controls
35 lines (31 loc) · 875 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
[build-system]
requires = ["maturin>=1.8,<2.0"]
build-backend = "maturin"
[project]
name = "html2text_rs"
description = "Convert HTML to markdown or plain text"
keywords = [
"python", "html2text", "html-to-text", "html-to-markdown", "html2md", "markdown"
]
authors = [
{name = "deedy5"}
]
requires-python = ">=3.8"
license = {text = "MIT License"}
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Text Editors :: Text Processing",
"Topic :: Text Processing :: Markup :: HTML",
"Topic :: Text Processing :: Markup :: Markdown",
]
dynamic = ["version"]
dependencies = []
[project.optional-dependencies]
dev = [
"pytest>=8.3.2",
]
[tool.maturin]
python-source = "python"
features = ["pyo3/extension-module"]