Files
zensical/pyproject.toml
T
Timothée Mazzucotelli b3c1d91ed8 refactor: use our markdown subclasses
Signed-off-by: Timothée Mazzucotelli <dev@pawamoy.fr>
2026-04-28 12:34:15 +00:00

86 lines
2.7 KiB
TOML

# Copyright (c) 2025-2026 Zensical and contributors
# SPDX-License-Identifier: MIT
# All contributions are certified under the DCO
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
# deal in the Software without restriction, including without limitation the
# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
# sell copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
# IN THE SOFTWARE.
[build-system]
requires = ["maturin>=1.8,<2.0"]
build-backend = "maturin"
[project]
name = "zensical"
description = "A modern static site generator built by the creators of Material for MkDocs"
authors = [
{ name = "Zensical", email = "contributors@zensical.org" }
]
license = "MIT"
license-files = ["LICENSE.md"]
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Web Environment",
"License :: OSI Approved :: MIT License",
"Programming Language :: Rust",
"Programming Language :: Python",
"Topic :: Documentation",
"Topic :: Software Development :: Documentation",
"Topic :: Text Processing :: Markup :: HTML",
"Topic :: Text Processing :: Markup :: Markdown",
]
dynamic = ["version"]
dependencies = [
"click>=8.1.8",
"deepmerge>=2.0",
"markdown>=3.7",
"pygments>=2.20",
"pymdown-extensions>=10.21.2",
"pyyaml>=6.0.2",
"tomli>=2.4.0",
]
[project.urls]
Homepage = "https://zensical.org/"
Documentation = "https://zensical.org/docs/"
Source = "https://github.com/zensical/zensical/"
Changelog = "https://zensical.org/docs/changelog/"
Issues = "https://github.com/zensical/zensical/issues"
[project.scripts]
zensical = "zensical.main:cli"
[dependency-groups]
dev = [
"maturin>=1.10.2",
"ruff>=0.12.8",
"ty>=0.0.32",
"types-pyyaml>=6.0.12",
]
[tool.maturin]
python-source = "python"
features = ["pyo3/extension-module"]
manifest-path = "crates/zensical/Cargo.toml"
include = [
"python/zensical/bootstrap/**/*",
"python/zensical/templates/**/*",
]