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
|
[build-system]
requires = [
"hatchling>=0.21.1",
]
build-backend = "hatchling.build"
[project]
name = "mkdocs-material-extensions"
description = "Extension pack for Python Markdown and MkDocs Material."
readme = "README.md"
license = "MIT"
requires-python = ">=3.8"
authors = [
{ name = "Isaac Muse", email = "Isaac.Muse@gmail.com" },
]
keywords = [
"extensions",
"markdown",
]
dynamic = [
"classifiers",
"dependencies",
"version",
]
[project.urls]
Homepage = "https://github.com/facelessuser/mkdocs-material-extensions"
[tool.hatch.version]
source = "code"
path = "materialx/__meta__.py"
[tool.hatch.build.targets.sdist]
include = [
"/requirements/*.txt",
"/materialx/**/*.py",
"/tests/**/*.py",
"/.pyspelling.yml",
"/.coveragerc",
"/tox.ini",
"/LICENSE.md",
"/changelog.md"
]
[tool.hatch.build.targets.wheel]
include = [
"/materialx",
]
[tool.hatch.metadata.hooks.custom]
|