mirror of
https://github.com/logos-blockchain/logos-blockchain-block-explorer-template.git
synced 2026-02-17 03:23:13 +00:00
43 lines
800 B
TOML
43 lines
800 B
TOML
[project]
|
|
name = "nomos-block-explorer"
|
|
version = "0.1.0"
|
|
requires-python = ">=3.14,<3.15"
|
|
dependencies = [
|
|
"fastapi~=0.120.2",
|
|
"httpx>=0.28.1",
|
|
"pydantic-settings>=2.11.0",
|
|
"python-on-whales~=0.79.0",
|
|
"requests~=2.32.5",
|
|
"rusty-results~=1.1.1",
|
|
"sqlmodel~=0.0.25",
|
|
"uvicorn~=0.38.0",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["setuptools>=64"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|
|
|
|
[tool.pyright]
|
|
include = ["src"]
|
|
|
|
[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
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"pytest>=9.0.2",
|
|
"pytest-asyncio>=1.3.0",
|
|
]
|