-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
43 lines (38 loc) · 1022 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
43
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "mkdocs-embed-external-markdown"
version = "3.0.2"
description = "Mkdocs plugin that allow to inject external markdown or markdown section from given url"
readme = {file = "README.md", content-type = "text/markdown"}
authors = [{name = "Stas Yakobov", email = "[email protected]"}]
license = {text = "MIT"}
keywords = [
"mkdocs",
"plugin",
"markdown",
"external-markdown",
"embed",
"external",
"markdown-section",
]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.9",
]
requires-python = ">=3.9"
dependencies = [
"Jinja2>=3.1.0",
"requests>=2.3.0"
]
[project.urls]
Source = 'https://github.com/fire1ce/mkdocs-embed-external-markdown/'
[project.optional-dependencies]
test = [
"pytest>=7.4.3",
"mkdocs>=1.5.3",
]
[project.scripts]
[project.entry-points."mkdocs.plugins"]
external-markdown = "external_markdown.plugin:EmbedExternalMarkdown"