-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
39 lines (34 loc) · 1.02 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools", "setuptools_scm[toml]"]
build-backend = "setuptools.build_meta"
[project]
name = "eml2pdf"
description = "Convert .eml (email) files to PDF using Python."
readme = 'README.md'
keywords = ["eml", "pdf", "pdf-converter", "weasyprint", "html", "mime", "multipart"]
authors = [
{name = "Pieter Lenaerts", email = "[email protected]"},
{name = "Daniel Grossfeld", email = "[email protected]"},
]
requires-python = ">= 3.11"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
"weasyprint~=64.0",
"markdown~=3.7",
"hurry.filesize~=0.9",
"beautifulsoup4~=4.13"
]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/plenaerts/eml2pdf"
Repository = "https://github.com/plenaerts/eml2pdf"
Issues = "https://github.com/plenaerts/eml2pdf/issues"
[project.scripts]
eml2pdf = "eml2pdf.eml2pdf:main"
[tool.setuptools]
packages = ["eml2pdf"]
include-package-data = false
[tool.setuptools_scm]