-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (38 loc) · 1.19 KB
/
pyproject.toml
File metadata and controls
43 lines (38 loc) · 1.19 KB
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
38
39
40
41
42
43
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "mailify-md"
version = "0.1.5"
authors = [{ name = "2bitbit" }]
description = "一个将 Markdown 文件转换为适合电子邮件的 HTML 的工具,并支持自定义 CSS \n A tool that converts one Markdown file into HTML suitable for emails, with support for custom CSS."
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Text Processing :: Markup :: HTML",
"Topic :: Utilities",
]
dependencies = [
"cairosvg",
"requests",
"premailer",
"Pygments",
"typer[all]",
"markdown-it-py[linkify,plugins]",
"beautifulsoup4",
"playwright",
]
keywords = ["markdown", "email", "html", "converter", "katex"]
[project.urls]
Homepage = "https://github.com/2bitbit/mailify-md"
"Bug Tracker" = "https://github.com/2bitbit/mailify-md/issues"
[project.scripts]
mailify-md = "mailify_md.cli:main_entry"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"mailify_md" = ["**/*"]