Add missing setup files and add a nice logger

This commit is contained in:
Alex Selimov 2025-06-09 21:22:50 -04:00
parent ed38373d1e
commit 645d329321
7 changed files with 132 additions and 6 deletions

19
pyproject.toml Normal file
View file

@ -0,0 +1,19 @@
[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 = [
"rich>=14.0.0",
]
[project.scripts]
reviewllama = "reviewllama:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"