forked from rst2pdf/rst2pdf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
89 lines (82 loc) · 1.97 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "rst2pdf"
authors = [
{name = "rst2pdf maintainers", email = "[email protected]"},
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Documentation",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Text Processing",
"Topic :: Utilities",
]
dependencies = [
"docutils",
"importlib_metadata",
"jinja2",
"packaging",
"pygments",
"pyyaml",
"reportlab",
"smartypants",
]
description = "Convert reStructured Text to PDF via ReportLab."
dynamic = ["version"]
keywords= [
"convert",
"docutils",
"pdf",
"pygments",
"reportlab'",
"restructured",
"rst",
]
license = {file = "LICENSE.txt"}
readme = "README.rst"
requires-python = ">=3.8"
[project.optional-dependencies]
aafiguresupport = ["aafigure"]
mathsupport = ["matplotlib"]
plantumlsupport = ["plantuml"]
rawhtmlsupport = ["xhtml2pdf"]
sphinx = ["sphinx"]
svgsupport = ["svglib"]
tests = ["pymupdf", "pytest"]
[project.scripts]
rst2pdf = "rst2pdf.createpdf:main"
[project.urls]
Homepage = "https://rst2pdf.org"
Changelog = "https://github.com/rst2pdf/rst2pdf/blob/master/CHANGES.rst"
Releases = "https://github.com/rst2pdf/rst2pdf/releases"
Source = "https://github.com/rst2pdf/rst2pdf"
"Bug Reports" = "https://github.com/rst2pdf/rst2pdf/issues"
[tool.black]
line-length = 88
target-version = ['py36']
skip-string-normalization = true
exclude = '''
(
/(
\.eggs
| \.git
| \.tox
| \.venv
| build
| dist
)/
| tests/input
)
'''
[tool.setuptools]
packages = ["rst2pdf"]
[tool.setuptools_scm]