Initial commit: ShellGen CLI tool with LLM backends

This commit is contained in:
2026-01-29 12:41:00 +00:00
parent 4439161783
commit 3e2fc2721f

62
app/pyproject.toml Normal file
View File

@@ -0,0 +1,62 @@
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "shellgen"
version = "0.1.0"
description = "A CLI tool that converts natural language descriptions into shell commands using local LLMs"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "MIT"}
authors = [
{name = "ShellGen Contributors"}
]
keywords = ["cli", "shell", "llm", "command-generator", "ollama", "llama"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"rich>=13.7.0",
"ollama>=0.1.0",
"pyyaml>=6.0",
]
[project.optional-dependencies]
llama-cpp = [
"llama-cpp-python>=0.2.0",
]
dev = [
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
"black>=23.0.0",
"mypy>=1.0.0",
]
[project.scripts]
shellgen = "shellgen:main"
[tool.setuptools.packages.find]
where = ["."]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_functions = ["test_*"]
[tool.black]
line-length = 100
target-version = ['py310']
[tool.mypy]
python_version = "3.10"
warn_return_any = true
warn_unused_ignores = true
disallow_untyped_defs = true