17 lines
334 B
TOML
17 lines
334 B
TOML
[project]
|
|
name = "html2text"
|
|
version = "0.1.0"
|
|
description = "Convert HTML content to plain text"
|
|
requires-python = ">=3.11"
|
|
dependencies = []
|
|
|
|
[project.scripts]
|
|
html2text = "html2text.main:main"
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/html2text"]
|