-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
48 lines (43 loc) · 1.11 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
47
48
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
version = "0.1"
name = "markdown-html-preprocessor"
description = "Collection of pre-processor scripts for Markdown to HTML converters"
readme = "README.md"
authors = [
{name = "Stephan"},
]
maintainers = [
{name = "Stephan"},
]
license = {file = "LICENSE"}
requires-python = ">= 3.10"
dependencies = [
"citeproc-py ~= 0.6",
"jinja2 ~= 3.1",
"marko ~= 2.0",
"regex >= 2023.12.25",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)"
]
keywords = ["markdown"]
[project.scripts]
preprocess-citations = "md_preprocessor.bibliography.main:main_cli"
[project.urls]
Homepage = "https://github.com/stephankoe/markdown-preprocessor"
Repository = "https://github.com/stephankoe/markdown-preprocessor.git"
Issues = "https://github.com/stephankoe/markdown-preprocessor/issues"
[tool.hatch.build]
exclude = [
"/.*",
"/docs",
"/tests",
"/venv",
]
[tool.hatch.build.targets.wheel]
packages = ["md_preprocessor"]