womm-certification/pyproject.toml
Gregory Gauthier 1002b16b81 feat: add initial WOMM Certification Toolkit implementation
Introduces the Works On My Machine certification framework, including:
- CLI tool for project certification and badge/certificate generation
- Certification checks per WOMM-STD-001:2026 standard
- Supporting documents, assets, and tests
- Python package setup with pyproject.toml
2026-04-02 16:30:28 +01:00

29 lines
591 B
TOML

[build-system]
requires = ["setuptools>=68.0", "setuptools-scm>=8.0"]
build-backend = "setuptools.build_meta"
[project]
name = "womm-certification"
version = "1.0.0"
description = "Works On My Machine — The Official Certification Toolkit"
readme = "README.md"
requires-python = ">=3.9"
license = "MIT"
authors = [
{ name = "The WOMM Standards Committee" },
]
dependencies = [
"click>=8.0",
"rich>=13.0",
]
[project.optional-dependencies]
png = ["cairosvg>=2.7"]
dev = ["pytest>=8.0"]
[project.scripts]
womm = "womm.cli:main"
[tool.setuptools.packages.find]
where = ["src"]