-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
48 lines (43 loc) · 943 Bytes
/
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
[project]
name = "hv4gha"
version = "0.3.0"
description = "Use HashiCorp Vault to manage a GitHub App's private RSA key."
authors = [{name = "Andreas Olsson", email = "[email protected]"}]
dependencies = [
"certifi (>=2024.7.4)",
"cryptography (>=43.0.1)",
"requests (>=2.31.0,<3)",
"pydantic (>=2.8.0,<3)",
]
requires-python = ">=3.10, <3.14"
readme = "README.md"
classifiers = [
"License :: OSI Approved :: MIT License",
]
[project.urls]
repository = "https://github.com/andreaso/hv4gha"
[tool.poetry.group.dev.dependencies]
mypy = "^1.14.1"
types-requests = "^2.31.0.20240406"
pytest = "^8.3.4"
ruff = "^0.8.6"
[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"