Files
aitbc/apps/blockchain-node/pyproject.toml
oib 15427c96c0 chore: update file permissions to executable across repository
- Change file mode from 644 to 755 for all project files
- Add chain_id parameter to get_balance RPC endpoint with default "ait-devnet"
- Rename Miner.extra_meta_data to extra_metadata for consistency
2026-03-06 22:17:54 +01:00

40 lines
891 B
TOML
Executable File

[tool.poetry]
name = "aitbc-blockchain-node"
version = "0.1.0"
description = "AITBC blockchain node service"
authors = ["AITBC Team"]
packages = [
{ include = "aitbc_chain", from = "src" }
]
[tool.poetry.dependencies]
python = "^3.13"
fastapi = "^0.111.0"
uvicorn = { extras = ["standard"], version = "^0.30.0" }
sqlmodel = "^0.0.16"
sqlalchemy = {extras = ["asyncio"], version = "^2.0.47"}
alembic = "^1.13.1"
aiosqlite = "^0.20.0"
websockets = "^12.0"
pydantic = "^2.7.0"
pydantic-settings = "^2.2.1"
orjson = "^3.10.0"
python-dotenv = "^1.0.1"
httpx = "^0.27.0"
uvloop = ">=0.22.0"
rich = "^13.7.1"
cryptography = "^42.0.5"
asyncpg = ">=0.29.0"
requests = "^2.32.5"
[tool.poetry.extras]
uvloop = ["uvloop"]
[tool.poetry.group.dev.dependencies]
pytest = "^8.2.0"
pytest-asyncio = "^0.23.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"