20 lines
381 B
TOML
20 lines
381 B
TOML
[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"
|