-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
28 lines (24 loc) · 891 Bytes
/
pyproject.toml
File metadata and controls
28 lines (24 loc) · 891 Bytes
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
[build-system]
requires = ["hatchling>=1.25"]
build-backend = "hatchling.build"
[project]
name = "htst-code-flow-skill"
version = "0.1.0"
description = "Installable Code Flow skill templates for Claude, Gemini, and Copilot workflows."
readme = "README.md"
requires-python = ">=3.11"
license = { text = "Apache-2.0" }
authors = [{ name = "Hightower Software Technologies" }]
keywords = ["code-flow", "skill", "claude", "gemini", "copilot", "documentation"]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: Apache Software License",
"Environment :: Console"
]
[project.scripts]
code-flow-skill = "code_flow_skill.cli:main"
[tool.hatch.build.targets.wheel]
packages = ["src/code_flow_skill"]
[tool.hatch.build.targets.wheel.force-include]
"src/code_flow_skill/templates" = "code_flow_skill/templates"