-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (30 loc) · 974 Bytes
/
Copy pathpyproject.toml
File metadata and controls
33 lines (30 loc) · 974 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
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "html-2-markdown"
version = "0.3.0"
description = "A simple HTML-to-Markdown converter with article extraction, selector filtering, and batch conversion."
readme = "README.md"
requires-python = ">=3.9"
license = { text = "MIT" }
authors = [
{ name = "Ryan Zhang" }
]
urls = { Homepage = "https://github.com/riainzhang" }
keywords = ["html", "markdown", "converter", "article-extraction", "cli"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Text Processing :: Markup :: HTML",
"Topic :: Text Processing :: Markup :: Markdown"
]
dependencies = []
[project.scripts]
html2md = "scripts.html_to_markdown:main"
[tool.setuptools]
packages = ["scripts"]