-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpyproject.toml
47 lines (42 loc) · 1.12 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
40
41
42
43
44
45
46
47
[build-system]
requires = [
"setuptools>=42",
"wheel"
]
build-backend = "setuptools.build_meta"
[project]
name = "markdown_pdf"
version = "1.7"
description = "Markdown to pdf renderer"
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.8"
license = { text = "GNU Affero General Public License v3" }
authors = [
{ name = "Vitaly Bogomolov", email = "[email protected]" }
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: OS Independent"
]
dependencies = [
"PyMuPDF==1.24.6; python_version<'3.9'",
"PyMuPDF==1.25.3; python_version>'3.8'",
"markdown-it-py==3.0.0; python_version>='3.8'"
]
[project.optional-dependencies]
dev = [
"flake8",
"pylint",
"pydocstyle",
"pytest",
"pytest-cov",
"codacy-coverage",
]
[project.urls]
"Homepage" = "https://github.com/vb64/markdown-pdf"
"Bug Tracker" = "https://github.com/vb64/markdown-pdf/issues"
[tool.setuptools]
packages = ["markdown_pdf"]
[tool.setuptools.package-data]
"markdown_pdf" = ["py.typed"]