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 67 68 69 70 71 72 73 74 75 76 77
|
[build-system]
requires = ["setuptools>=80.9.0", "cffi>=2.0.0", "pycparser>=2.06"]
build-backend = "setuptools.build_meta"
[project]
name = "cmarkgfm"
version = "2025.10.22"
description = "Minimal bindings to GitHub's fork of cmark"
readme = "README.rst"
requires-python = ">=3.9"
license = "MIT"
authors = [
{name = "The Python Packaging Authority", email = "me@thea.codes"},
{email = "pypa-dev@googlegroups.com"}
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
dependencies = [
"cffi>=2.0.0",
]
[project.urls]
Homepage = "https://github.com/theacodes/cmarkgfm"
"Bug Reports" = "https://github.com/theacodes/cmarkgfm/issues"
Funding = "https://donate.pypi.org"
Source = "https://github.com/theacodes/cmarkgfm"
[tool.setuptools.packages.find]
where = ["src"]
[tool.cibuildwheel]
build = "*"
skip = "pp*"
test-skip = ""
archs = ["auto"]
[tool.cibuildwheel.macos]
archs = ["auto", "arm64"]
[tool.cibuildwheel.linux]
archs = ["auto", "aarch64"]
before-all = "yum -y update && yum install -y libffi-devel"
[[tool.cibuildwheel.overrides]]
select = "*-musllinux*"
before-all = "apk add libffi-dev"
[tool.coverage.run]
branch = true
omit = [
# Skip cffi builders
"*/build_*.py",
]
source = [
"cmarkgfm",
"tests/",
]
[tool.coverage.paths]
source = [
"src/cmarkgfm",
".nox/*/lib/python*/site-packages/cmarkgfm",
]
[tool.coverage.report]
show_missing = true
|