-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
46 lines (40 loc) · 1.08 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
[project]
name = "limberer"
version = "0.9.1"
authors = [
{ name = "Jeff Dileo", email = "jtdileo@gmail.com" },
]
maintainers = [
{ name = "Jeff Dileo", email = "jtdileo@gmail.com" },
]
license = { file = "LICENSE" }
description = "A flexible document generator based on weasyprint, mustache templates, and pandoc."
readme = "README.md"
requires-python = ">=3.9"
keywords = ["pandoc", "panflute", "markdown", "html", "pdf", "report", "document", "generator"]
classifiers = [
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3.9",
]
dependencies = [
"panflute",
"chevron",
"weasyprint",
"rtoml",
"pillow",
"beautifulsoup4",
"Pygments",
]
[project.urls]
repository = "https://github.com/ChaosData/limberer"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project.scripts]
limberer = "limberer:main"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"limberer.static" = ["*", "assets/*", "custom/*", "sections/*", "templates/*", "images/*"]