-
-
Notifications
You must be signed in to change notification settings - Fork 61
Expand file tree
/
Copy pathpyproject.toml
More file actions
137 lines (125 loc) · 4.66 KB
/
pyproject.toml
File metadata and controls
137 lines (125 loc) · 4.66 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
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
[tool.poetry]
name = "rinohtype"
version = "0.5.6"
description = "The Python document processor"
authors = ["Brecht Machiels <brecht@mos6581.org>"]
license = "AGPL-3.0-only"
readme = "README.rst"
homepage = "https://github.com/brechtm/rinohtype"
repository = "https://github.com/brechtm/rinohtype"
documentation = "http://www.mos6581.org/rinohtype/master"
keywords = ["typesetting", "rst", "pdf", "opentype"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Environment :: Other Environment",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: OS Independent",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Documentation",
"Topic :: Documentation :: Sphinx",
"Topic :: Printing",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Text Processing",
"Topic :: Text Processing :: Fonts",
"Topic :: Text Processing :: Markup",
"Topic :: Text Processing :: Markup :: Markdown",
"Topic :: Text Processing :: Markup :: reStructuredText",
"Topic :: Text Processing :: Markup :: XML",
"Framework :: Sphinx :: Extension"
]
packages = [
{ include = "rinoh", from = "src" }
]
include = [
{ path = ".coveragerc", format = "sdist" },
{ path = ".envrc", format = "sdist" },
{ path = ".python-version", format = "sdist" },
{ path = "CHANGES.rst", format = "sdist" },
{ path = "CONTRIBUTING.rst", format = "sdist" },
{ path = "coverage.py", format = "sdist" },
{ path = "DEVELOPING.rst", format = "sdist" },
{ path = "doc", format = "sdist" },
{ path = "gitlabpypi.py", format = "sdist" },
{ path = "icons", format = "sdist" },
{ path = "macapp", format = "sdist" },
{ path = "macapp.py", format = "sdist" },
{ path = "poetry.lock", format = "sdist" },
{ path = "poetry.toml", format = "sdist" },
{ path = "pyenv_setup.py", format = "sdist" },
{ path = "run_tests.py", format = "sdist" },
{ path = "tests", format = "sdist" },
{ path = "tests_regression", format = "sdist" },
{ path = "tox.ini", format = "sdist" },
{ path = "wininst.py", format = "sdist" },
{ path = "wininst.cfg", format = "sdist" },
]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/brechtm/rinohtype/issues"
"Changelog" = "http://www.mos6581.org/rinohtype/master/changelog.html"
[tool.poetry.scripts]
rinoh = "rinoh.__main__:main"
[tool.poetry.plugins."rinoh.frontends"]
CommonMark = "rinoh.frontend.commonmark:CommonMarkReader"
reStructuredText = "rinoh.frontend.rst:ReStructuredTextReader"
[tool.poetry.plugins."rinoh.templates"]
article = "rinoh.templates:Article"
book = "rinoh.templates:Book"
[tool.poetry.plugins."rinoh.stylesheets"]
sphinx = "rinoh.stylesheets:sphinx"
sphinx_article = "rinoh.stylesheets:sphinx_article"
sphinx_base14 = "rinoh.stylesheets:sphinx_base14"
sphinx_article_base14 = "rinoh.stylesheets:sphinx_article_base14"
[tool.poetry.plugins."rinoh.typefaces"]
courier = "rinoh.fonts.adobe14:courier"
helvetica = "rinoh.fonts.adobe14:helvetica"
symbol = "rinoh.fonts.adobe14:symbol"
times = "rinoh.fonts.adobe14:times"
"itc zapfdingbats" = "rinoh.fonts.adobe14:zapfdingbats"
[tool.poetry.plugins."sphinx.builders"]
rinoh = "rinoh.frontend.sphinx"
[tool.poetry.dependencies]
python = "^3.9.0"
appdirs = "^1.4.3"
docutils = ">=0.15"
myst-parser = ">=0.18.1"
packaging = ">=14.0"
rinoh-typeface-dejavuserif = "^0.1.3"
rinoh-typeface-texgyrecursor = "^0.1.1"
rinoh-typeface-texgyreheros = "^0.1.1"
rinoh-typeface-texgyrepagella = "^0.1.1"
ziamath = {version = "^0.12", optional = true}
cairosvg = {version = "^2.8.2", optional = true}
[tool.poetry.extras]
math = ["ziamath", "cairosvg"]
[tool.poetry.group.dev.dependencies]
doc8 = "^1.0.0"
nox = ">=2022.1.7"
nox-poetry = "^1.0.1"
poetry-core = "^1.1.0b3"
pytest = "^8.2.2"
pytest-assume = "^2.4.3"
pytest-console-scripts = "^1.3"
pytest-cov = "^5.0.0"
pytest-xdist = "^3.0.2"
restview = "^3.0.0"
Sphinx = [
{version = ">=3.1,<7.2.0", python = "<3.9"},
{version = ">=3.1", python = "3.9"},
{version = ">=3.1,!=3.5.*,!=4.0.*,!=4.1.*", python = ">=3.10"},
{version = ">=8.1.0", python = ">=3.11"},
]
defusedxml = ">=0.7.1" # for Sphinx>=7.3
sphinx-immaterial = ">=0.10"
sphinxcontrib-autoprogram = "^0.1.7"
pytest-github-actions-annotate-failures = { version = "^0.2.0", optional = true }
pytest-pycharm = "^0.7.0"
[build-system]
requires = ["poetry-core>=1.0.8"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.requires-plugins]
poetry-plugin-export = ">=1.8"