-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
69 lines (60 loc) · 1.63 KB
/
pyproject.toml
File metadata and controls
69 lines (60 loc) · 1.63 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "releaseboard"
version = "1.1.0"
description = "Internal release-readiness dashboard for engineering teams"
readme = "README.md"
license = "AGPL-3.0-only"
requires-python = ">=3.12"
authors = [
{ name = "ReleaseBoard Team" },
]
keywords = ["release", "dashboard", "git", "branch", "readiness"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Build Tools",
"Typing :: Typed",
]
dependencies = [
"typer>=0.9.0",
"jinja2>=3.1.0",
"jsonschema>=4.20.0",
"rich>=13.0.0",
"fastapi>=0.109.0",
"uvicorn[standard]>=0.27.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-cov>=4.1.0",
"pytest-asyncio>=0.23.0",
"httpx>=0.27.0",
"ruff>=0.2.0",
]
releasepilot = [
"releasepilot @ git+https://github.com/polprog-tech/ReleasePilot.git",
]
[tool.hatch.metadata]
allow-direct-references = true
[project.scripts]
releaseboard = "releaseboard.cli.app:app"
[tool.hatch.build.targets.wheel]
packages = ["src/releaseboard"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]
addopts = "-v --tb=short"
[tool.ruff]
target-version = "py312"
line-length = 100
src = ["src", "tests"]
[tool.ruff.lint]
select = ["E", "F", "I", "N", "UP", "B", "SIM", "TCH"]
[tool.ruff.lint.per-file-ignores]
"src/releaseboard/cli/app.py" = ["B008"] # typer.Option() in defaults is standard typer pattern