We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b2fce11 commit 51c1489Copy full SHA for 51c1489
1 file changed
pyproject.toml
@@ -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