29 lines
591 B
TOML
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"]
|