[build-system] requires = ["setuptools>=61.0", "wheel"] build-backend = "setuptools.build_meta" [project] name = "local-llm-prompt-manager" version = "0.1.0" description = "A CLI tool for developers to manage, organize, version control, and share local LLM prompts and configurations" readme = "README.md" requires-python = ">=3.9" license = {text = "MIT"} authors = [ {name = "Developer", email = "dev@example.com"} ] keywords = ["llm", "prompt", "cli", "ollama", "lm-studio"] classifiers = [ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12" ] dependencies = [ "click>=8.1.7", "rich>=13.7.0", "pyyaml>=6.0.1", "requests>=2.31.0", "jinja2>=3.1.3" ] [project.optional-dependencies] dev = [ "pytest>=7.4.0", "pytest-cov>=4.1.0" ] [project.scripts] llm-prompt = "src.cli:main" [tool.setuptools.packages.find] where = ["."] [tool.pytest.ini_options] testpaths = ["tests"] python_files = ["test_*.py"] python_functions = ["test_*"]