23 lines
559 B
TOML
23 lines
559 B
TOML
[build-system]
|
|
requires = ["hatchling>=1.27"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "sssf-opencode"
|
|
version = "0.1.0"
|
|
description = "deterministic software factory workflows for OpenCode"
|
|
readme = "README.md"
|
|
requires-python = ">=3.11"
|
|
license = { text = "MIT" }
|
|
authors = [{ name = "sssf-opencode contributors" }]
|
|
classifiers = [
|
|
"License :: OSI Approved :: MIT License",
|
|
"Programming Language :: Python :: 3",
|
|
]
|
|
|
|
[project.scripts]
|
|
sssf-opencode = "sssf_opencode.cli:main"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/sssf_opencode"]
|