-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (50 loc) · 1.2 KB
/
pyproject.toml
File metadata and controls
55 lines (50 loc) · 1.2 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
[project]
name = "hv4gha"
version = "0.4.1"
description = "Use HashiCorp Vault to manage a GitHub App's private RSA key."
authors = [{name = "Andreas Olsson", email = "andreas@arrakis.se"}]
dependencies = [
"certifi (>=2025.10.5)",
"cffi (>=2.0.0)",
"cryptography (>=43.0.1)",
"requests (>=2.31.0,<3)",
"pydantic (>=2.12.0,<3)",
]
requires-python = ">=3.10, <3.15"
readme = "README.md"
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
[project.urls]
repository = "https://github.com/andreaso/hv4gha"
[tool.poetry.group.dev.dependencies]
mypy = "^1.20.1"
types-requests = "^2.31.0.20240406"
pytest = "^9.0.3"
ruff = "^0.15.10"
[tool.ruff]
target-version = "py310"
[tool.ruff.lint]
select = [
# pycodestyle
"E", "W",
# pyflakes
"F",
# pyupgrade
"UP",
# flake8-bugbear
"B",
# flake8-simplify
"SIM",
# flake8-unused-arguments
"ARG",
]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"