mirror of
https://github.com/khodges42/nightShift.git
synced 2026-06-14 10:08:37 +00:00
24 lines
485 B
TOML
24 lines
485 B
TOML
[build-system]
|
|
requires = ["setuptools>=69"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "nightshift"
|
|
version = "0.1.0"
|
|
description = "Auditable local-first AI coding pipelines."
|
|
readme = "README.md"
|
|
requires-python = ">=3.11"
|
|
license = "GPL-3.0-only"
|
|
authors = [
|
|
{ name = "K455" }
|
|
]
|
|
|
|
[project.scripts]
|
|
nightshift = "nightshift.cli:main"
|
|
|
|
[tool.setuptools.packages.find]
|
|
include = ["nightshift*"]
|
|
|
|
[tool.setuptools.package-data]
|
|
nightshift = ["project_templates/**/*"]
|