17 lines
394 B
TOML
17 lines
394 B
TOML
|
|
[build-system]
|
||
|
|
requires = ["setuptools>=68"]
|
||
|
|
build-backend = "setuptools.build_meta"
|
||
|
|
|
||
|
|
[project]
|
||
|
|
name = "canned-prompts-reference"
|
||
|
|
version = "0.1.0"
|
||
|
|
description = "Tiny filesystem reference CLI for Canned Prompt Format v0.1"
|
||
|
|
requires-python = ">=3.10"
|
||
|
|
dependencies = ["PyYAML>=6.0,<7"]
|
||
|
|
|
||
|
|
[project.scripts]
|
||
|
|
canned-prompts = "canned_prompts:main"
|
||
|
|
|
||
|
|
[tool.setuptools]
|
||
|
|
py-modules = ["canned_prompts"]
|