mirror of
https://github.com/kbenestad/mdcms.git
synced 2026-06-18 07:24:31 +00:00
PyInstaller-bundled Python cannot find system CA certs on Linux/macOS. Use certifi's bundled CA bundle for all GitHub API requests. https://claude.ai/code/session_01MqEqGhP1guGx5VuFsLaws2
27 lines
602 B
TOML
27 lines
602 B
TOML
[build-system]
|
|
requires = ["setuptools>=68", "wheel"]
|
|
build-backend = "setuptools.backends.legacy:build"
|
|
|
|
[project]
|
|
name = "mdcms"
|
|
version = "0.3.0"
|
|
description = "MD-CMS — Markdown-based CMS companion CLI"
|
|
readme = "README.md"
|
|
license = { text = "Apache-2.0" }
|
|
authors = [{ name = "Kristian Benestad" }]
|
|
requires-python = ">=3.9"
|
|
dependencies = [
|
|
"click>=8.0",
|
|
"PyYAML>=6.0",
|
|
"certifi>=2024.0",
|
|
]
|
|
|
|
[project.scripts]
|
|
mdcms = "mdcms:main"
|
|
|
|
[project.urls]
|
|
Homepage = "https://github.com/kbenestad/mdcms"
|
|
Documentation = "https://docs.benestad.net"
|
|
|
|
[tool.setuptools]
|
|
py-modules = ["mdcms"]
|