Added project files

This commit is contained in:
2026-01-27 18:14:57 -05:00
parent 91138f3154
commit c62831fd0a
6 changed files with 337 additions and 0 deletions

15
pyproject.toml Normal file
View File

@@ -0,0 +1,15 @@
[project]
name = "recurshion"
version = "0.1.0"
description = "CLI tool for chaining POSIX shells"
readme = "README.md"
authors = [
{ name = "Adrian Jaroszewski", email = "jaroszea@sheridancollege.ca" }
]
requires-python = ">=3.13"
dependencies = [
"pyyaml>=6.0.2",
]
[project.scripts]
recurshion = "recurshion:main"