-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
35 lines (31 loc) · 943 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
[project]
name = "bmdf"
description = "Embed commands, their output, and tables of contents in markdown"
version = "0.4.2"
readme = "README.md"
authors = [
{ name = "Ryan Williams", email = "ryan@runsascoded.com" }
]
license = { text = "MIT" }
requires-python = ">=3.9"
dependencies = [
"utz>=0.13.0",
"click>=8",
]
[tool.setuptools]
package-dir = {"" = "src"}
packages = ["bmdf", "bmdf.cli", "mdcmd", "mdcmd.cli", "mktoc", "mktoc.cli"]
[project.scripts]
bmd = "bmdf.cli:bmd"
bmdf = "bmdf.cli:bmd_f"
bmdff = "bmdf.cli:bmd_ff"
bmdfff = "bmdf.cli:bmd_fff"
mdcmd = "mdcmd.cli:main"
mktoc = "mktoc.cli:main"
[project.urls]
"Homepage" = "https://github.com/runsascoded/bash-markdown-fence"
"Repository" = "https://github.com/runsascoded/bash-markdown-fence.git"
"Bug Tracker" = "https://github.com/runsascoded/bash-markdown-fence/issues"
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"