forked from eoas-ubc/paged_html_theme
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (28 loc) · 747 Bytes
/
pyproject.toml
File metadata and controls
34 lines (28 loc) · 747 Bytes
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
[build-system]
requires = [
"setuptools >= 48",
"setuptools_scm[toml] >= 4, <6",
"setuptools_scm_git_archive",
"wheel >= 0.29.0",
]
build-backend = 'setuptools.build_meta'
[project]
name = "paged_html_theme"
description = "myst pdf rendering using pagedjs"
authors = [
{ name="Philip Austin", email="paustin@eoas.ubc.ca" },
]
dynamic = ["version"]
dependencies = [
"libsass",
"bz2file",
"Jinja2>=3.1.2",
"setuptools_scm"
]
[project.scripts]
build_page = "paged_html_theme.scripts.build_page:main"
inject_css = "paged_html_theme.scripts.inject_css:main"
[project.entry-points]
"sphinx.html_themes" = {paged_html_theme = "paged_html_theme"}
[tool.setuptools_scm]
write_to = "src/paged_html_theme/_version.py"