Initial upload: CodeGuard-CLI v0.1.0

This commit is contained in:
2026-02-01 02:53:01 +00:00
parent b27c411711
commit 1c58e2f8d1

66
pyproject.toml Normal file
View File

@@ -0,0 +1,66 @@
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "codeguard-cli"
version = "0.1.0"
description = "A CLI tool that runs local LLMs to analyze code for security vulnerabilities, code smells, and bugs"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "MIT"}
authors = [
{name = "CodeGuard Team"}
]
keywords = ["security", "cli", "llm", "code-analysis", "pre-commit"]
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 = [
"click>=8.1.0",
"ollama>=0.1.0",
"gitpython>=3.1.0",
"tree-sitter>=0.20.0",
"rich>=13.0.0",
"pydantic>=2.0.0",
"pyyaml>=6.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
"pytest-mock>=3.10.0",
"httpx>=0.24.0",
]
[project.scripts]
codeguard = "codeguard.cli:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
addopts = "-v --tb=short"
[tool.coverage.run]
source = ["src/codeguard"]
omit = ["tests/*"]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"def __repr__",
"raise AssertionError",
"raise NotImplementedError",
]