-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
32 lines (29 loc) · 923 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "jetblack-markdown"
version = "1.2.0"
authors = [
{ name="Rob Blackbourn", email="[email protected]" },
]
description = "A markdown extension for python documentation"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
readme = "README.md"
dependencies = [
"markdown>=3.5.1,<4",
"docstring-parser==0.15",
"latex2mathml==3.77.0"
]
license = {text = "Apache-2.0"}
[project.urls]
Repository = "https://github.com/rob-blackbourn/jetblack-markdown"
Documentation = "https://rob-blackbourn.github.io/jetblack-markdown"
Issues = "https://github.com/rob-blackbourn/jetblack-markdown/issues"
[tool.setuptools.package-data]
"jetblack_markdown.templates" = ["*.jinja2"]