ReviewLlama/pyproject.toml

29 lines
664 B
TOML
Raw Normal View History

[project]
name = "reviewllama"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
authors = [{ name = "Alex Selimov", email = "alex@alexselimov.com" }]
requires-python = ">=3.13"
dependencies = [
2025-06-09 21:54:37 -04:00
"gitpython>=3.1.44",
2025-06-18 14:26:21 -04:00
"langchain>=0.3.25",
"langchain-community>=0.3.25",
2025-06-18 14:26:21 -04:00
"langchain-ollama>=0.3.3",
"pytest>=8.4.0",
"rich>=14.0.0",
]
[project.scripts]
reviewllama = "reviewllama:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.pyright]
include = ["src", "reviewllama"]
exclude = ["**/node_modules", "**/__pycache__"]
reportMissingImports = true
typeCheckingMode = "basic"