Skip to content

Commit 51c1489

Browse files
committed
Add pyproject.toml
1 parent b2fce11 commit 51c1489

1 file changed

Lines changed: 24 additions & 0 deletions

File tree

pyproject.toml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
[build-system]
2+
requires = ["setuptools>=68", "wheel"]
3+
build-backend = "setuptools.build_meta"
4+
5+
[project]
6+
name = "roast-my-code"
7+
version = "0.1.0"
8+
description = "A brutally honest, funny AI-powered code quality roaster"
9+
readme = "README.md"
10+
requires-python = ">=3.11"
11+
dependencies = [
12+
"typer[all]",
13+
"rich",
14+
"openai",
15+
"gitpython",
16+
"jinja2",
17+
]
18+
19+
[project.scripts]
20+
roast = "roast.cli:app"
21+
22+
[tool.pytest.ini_options]
23+
pythonpath = ["."]
24+
testpaths = ["tests"]

0 commit comments

Comments
 (0)