- 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
21 lines
452 B
TOML
Executable File
21 lines
452 B
TOML
Executable File
[tool.poetry]
|
|
name = "aitbc-core"
|
|
version = "0.1.0"
|
|
description = "AITBC Core Utilities"
|
|
authors = ["AITBC Team <team@aitbc.dev>"]
|
|
readme = "README.md"
|
|
packages = [{include = "aitbc", from = "src"}]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.13"
|
|
pydantic = "^2.7.0"
|
|
python-json-logger = "^2.0.7"
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
pytest = "^8.2.0"
|
|
mypy = "^1.19.1"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|