forked from fire1ce/mkdocs-embed-external-markdown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
38 lines (33 loc) · 944 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "mkdocs-embed-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 = "yanedie", 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 = [
"requests>=2.3.0"
]
[project.urls]
Source = 'https://github.com/yanedie/mkdocs-embed-external-markdown'
[project.optional-dependencies]
[project.scripts]
[project.entry-points."mkdocs.plugins"]
external-markdown = "external_markdown.plugin:EmbedExternalMarkdown"