-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (30 loc) · 746 Bytes
/
pyproject.toml
File metadata and controls
36 lines (30 loc) · 746 Bytes
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
[tool.poetry]
name = "bws-cache"
version = "0.1.0"
description = ""
authors = ["ripple <github@ripple.contact>"]
license = "MIT"
readme = "README.md"
package-mode = false
[tool.poetry.dependencies]
python = "~3.13"
fastapi = "^0.116.0"
prometheus-client = "^0.22.0"
pyyaml = "^6.0.2"
uvicorn = "^0.35.0"
requests = "^2.32.3"
bws-sdk = "1.0.0"
sentry-sdk = {extras = ["fastapi"], version = "^2.33.0"}
[tool.poetry.group.dev.dependencies]
ruff = "^0.12.0"
types-requests = "^2.32.0.20241016"
ansible-core = "^2.18.2"
pre-commit = "^4.2.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pyright]
venvPath = "."
venv = ".venv"
[tool.ruff.lint]
select = ["E4", "E7", "E9", "W1", "W2", "F", "RUF", "I"]