-
Notifications
You must be signed in to change notification settings - Fork 10
/
pyproject.toml
94 lines (81 loc) · 1.81 KB
/
pyproject.toml
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
# poetry self add poetry-bumpversion
[build-system]
build-backend = "poetry.core.masonry.api"
requires = [
"poetry-core",
]
[tool.poetry]
authors = [
"eggplants <[email protected]>",
]
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: Implementation :: CPython",
]
description = "Generate ghcr.io container's status badge"
keywords = [
"github-container-registry",
"badge",
"ghcr",
]
name = "ghcr_badge"
packages = [
{ include = "ghcr_badge" },
]
license = "MIT"
readme = "README.md"
repository = "https://github.com/eggplants/ghcr-badge"
version = "0.5.0"
[tool.poetry.dependencies]
python = ">=3.8,<3.13"
anybadge = "^1.9.0"
flask = ">=2.1.2,<4.0.0"
gunicorn = ">=20.1,<24.0"
humanfriendly = "^10.0"
requests = "^2.28.0"
types-humanfriendly = "^10.0"
types-requests = "^2.28.0"
typing-extensions = "^4.5.0"
waitress = "^3.0.0"
[tool.poetry.group.dev.dependencies]
mypy = ">=0.991,<1.14"
pre-commit = ">=2.20,<4.0"
taskipy = "^1.10.3"
[tool.poetry.scripts]
ghcr-badge-server = "ghcr_badge.server:main"
ghcr-badge = "ghcr_badge.main:main"
[tool.black]
line-length = 120
target-version = [
'py39',
]
[tool.ruff]
line-length = 120
select = [
"ALL",
]
ignore = [
"D203", # no-blank-line-before-class
"D213", # multi-line-summary-second-line
]
mccabe.max-complexity = 18
[tool.mypy]
pretty = true
python_version = "3.9"
show_error_codes = true
strict = true
[tool]
[tool.djlint]
format_css = true
format_js = true
indent = 2
css.indent_size = 2
js.indent_size = 2
[tool.poetry_bumpversion.file."ghcr_badge/__init__.py"]
[tool.taskipy.tasks]
lint = "pre-commit run -a"
profile = "python -m cProfile"
dev = "FLASK_ENV=development gunicorn --reload"