-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (38 loc) · 1.25 KB
/
pyproject.toml
File metadata and controls
44 lines (38 loc) · 1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[project]
name = "draft-punks"
version = "0.1.0"
description = "CLI to wrangle CodeRabbit reviews into a humane TDD flow"
authors = [{name = "Draft Punks"}]
requires-python = ">=3.11"
dependencies = ["typer>=0.12", "rich>=13.7"]
readme = { file = "README.md", content-type = "text/markdown" }
license = { file = "LICENSE" }
keywords = ["cli", "github", "codereview", "coderabbit", "llm", "automation"]
classifiers = [
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Quality Assurance",
]
[project.urls]
Homepage = "https://github.com/flyingrobots/draft-punks"
Repository = "https://github.com/flyingrobots/draft-punks.git"
Issues = "https://github.com/flyingrobots/draft-punks/issues"
[tool.pytest.ini_options]
minversion = "7.0"
addopts = "-q"
[project.optional-dependencies]
dev = [
"pytest>=7",
]
[project.scripts]
doghouse = "doghouse.cli.main:app"
[build-system]
requires = ["hatchling>=1.21"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/doghouse"]