mirror of
https://github.com/bikini/patchwork
synced 2026-06-27 08:08:41 +00:00
26 lines
751 B
TOML
26 lines
751 B
TOML
[build-system]
|
|
requires = ["setuptools>=61", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "patchwork"
|
|
version = "0.2.0"
|
|
description = "Python source transformation tool with reproducible builds, static audit metadata, and manifest generation"
|
|
requires-python = ">=3.9"
|
|
license = {text = "MIT"}
|
|
classifiers = [
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.9",
|
|
"Programming Language :: Python :: 3.10",
|
|
"Programming Language :: Python :: 3.11",
|
|
"Programming Language :: Python :: 3.12",
|
|
"Topic :: Security",
|
|
"Topic :: Software Development :: Code Generators",
|
|
]
|
|
|
|
[project.scripts]
|
|
patchwork = "patchwork.cli:main"
|
|
|
|
[tool.setuptools.packages.find]
|
|
include = ["patchwork*"]
|