- 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
25 lines
586 B
TOML
Executable File
25 lines
586 B
TOML
Executable File
[tool.poetry]
|
|
name = "aitbc-sdk"
|
|
version = "0.1.0"
|
|
description = "AITBC client SDK for interacting with coordinator services"
|
|
authors = ["AITBC Team <team@aitbc.dev>"]
|
|
readme = "README.md"
|
|
packages = [{include = "aitbc_sdk", from = "src"}]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.13"
|
|
httpx = "^0.27.0"
|
|
pydantic = "^2.7.0"
|
|
aitbc-crypto = {path = "../aitbc-crypto"}
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
pytest = "^8.2.0"
|
|
pytest-asyncio = "^0.23.0"
|
|
black = "^24.4.2"
|
|
isort = "^5.13.2"
|
|
mypy = "^1.10.0"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|