30 lines
584 B
TOML
Raw Permalink Normal View History

2025-10-06 16:48:42 +02:00
[project]
name = "nomos-block-explorer"
version = "0.1.0"
2025-10-30 11:48:34 +01:00
requires-python = ">=3.14,<3.15"
2025-10-06 16:48:42 +02:00
dependencies = [
"fastapi~=0.120.2",
2025-10-15 20:53:52 +02:00
"httpx>=0.28.1",
"pydantic-settings>=2.11.0",
"python-on-whales~=0.79.0",
2025-10-06 16:48:42 +02:00
"requests~=2.32.5",
"rusty-results~=1.1.1",
"sqlmodel~=0.0.25",
"uvicorn~=0.38.0",
2025-10-06 16:48:42 +02:00
]
[tool.pyright]
include = ["src"]
2025-10-03 22:27:30 +02:00
[tool.black]
line-length = 120
target-version = ["py313"]
skip-string-normalization = false
[tool.isort]
profile = "black"
combine_as_imports = true
src_paths = ["src"]
skip_gitignore = true
ensure_newline_before_comments = true