forked from facelessuser/pymdown-extensions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
66 lines (60 loc) · 1.35 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[build-system]
requires = [
"hatchling>=0.21.1",
]
build-backend = "hatchling.build"
[project]
name = "pymdown-extensions"
description = "Extension pack for Python Markdown."
readme = "README.md"
license = "MIT"
requires-python = ">=3.7"
authors = [
{ name = "Isaac Muse", email = "[email protected]" },
]
keywords = [
"extensions",
"markdown",
]
dynamic = [
"classifiers",
"dependencies",
"version",
]
[project.urls]
Homepage = "https://github.com/facelessuser/pymdown-extensions"
[tool.hatch.version]
source = "code"
path = "pymdownx/__meta__.py"
[tool.hatch.build.targets.sdist]
include = [
"/docs/src/markdown/**/*.md",
"/docs/src/markdown/**/*.gif",
"/docs/src/markdown/**/*.png",
"/docs/src/markdown/dictionary/*.txt",
"/docs/theme/**/*.css",
"/docs/theme/**/*.js",
"/docs/theme/**/*.html",
"/docs/theme/**/*.css.map",
"/docs/theme/**/*.js.map",
"/requirements/*.txt",
"/pymdownx/**/*.py",
"/tests/**/*.txt",
"/tests/**/*.py",
"/tests/**/*.html",
"/tests/**/*.yml",
"/tests/**/*.css",
"/tests/**/*.png",
"/tools/__init__.py",
"/tools/pymdownx_md_render.py",
"/.pyspelling.yml",
"/.coveragerc",
"/mkdocs.yml",
"/run_tests.py",
"/tox.ini",
]
[tool.hatch.build.targets.wheel]
include = [
"/pymdownx",
]
[tool.hatch.metadata.hooks.custom]