mirror of
https://github.com/katanemo/plano.git
synced 2026-06-17 15:25:17 +02:00
restructure cli
- move /arch/tools => /cli - rename /arch -> /config - update all refs in tests to use /config - update planoai code with new references
This commit is contained in:
parent
a56bb9d190
commit
425acecccc
45 changed files with 137 additions and 102 deletions
28
cli/pyproject.toml
Normal file
28
cli/pyproject.toml
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
[tool.poetry]
|
||||
name = "planoai"
|
||||
version = "0.4.0"
|
||||
description = "Python-based CLI tool to manage Plano."
|
||||
authors = ["Katanemo Labs, Inc."]
|
||||
readme = "README.md"
|
||||
packages = [{ include = "planoai" }]
|
||||
|
||||
[tool.poetry.dependencies]
|
||||
python = ">=3.10"
|
||||
click = ">=8.1.7,<9.0.0"
|
||||
jinja2 = ">=3.1.4,<4.0.0"
|
||||
jsonschema = ">=4.23.0,<5.0.0"
|
||||
pyyaml = ">=6.0.2,<7.0.0"
|
||||
requests = ">=2.31.0,<3.0.0"
|
||||
|
||||
[tool.poetry.group.dev.dependencies]
|
||||
pytest = ">=8.4.1,<9.0.0"
|
||||
|
||||
[tool.poetry.scripts]
|
||||
planoai = "planoai.main:main"
|
||||
|
||||
[build-system]
|
||||
requires = ["poetry-core>=2.0.0"]
|
||||
build-backend = "poetry.core.masonry.api"
|
||||
|
||||
[tool.pytest.ini_options]
|
||||
addopts = ["-v"]
|
||||
Loading…
Add table
Add a link
Reference in a new issue