-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
42 lines (35 loc) · 937 Bytes
/
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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
authors = [{ name = "Kentaro Iizuka", email = "[email protected]" }]
name = "mdsite"
version = "0.1.0"
license = { file = "LICENSE" }
description = "Minimal Static Site Generator."
dependencies = [
"jinja2",
"markdown",
"pyyaml",
"pygments",
"python-markdown-math",
]
[project.optional-dependencies]
dev = ["pytest", "black", "isort"]
[project.scripts]
mdsite = "mdsite.mdsite:entrypoint"
[project.urls]
homepage = "https://iizukak.github.io/mdsite/"
documentation = "https://github.com/iizukak/mdsite/blob/main/README.md"
repository = "https://github.com/iizukak/mdsite"
[tool]
rye = { dev-dependencies = [
"black>=23.9.1",
"pytest>=7.4.2",
] }
[tool.setuptools]
zip-safe = false
include-package-data = true
packages = ["mdsite"]
[tool.setuptools.package-data]
mdsite = ["template/*"]