Files
aitbc/packages/py/aitbc-sdk/pyproject.toml
aitbc 8f9d854025
Some checks failed
Integration Tests / test-service-integration (push) Has been cancelled
Package Tests / Python package - aitbc-agent-sdk (push) Has started running
Package Tests / Python package - aitbc-core (push) Has been cancelled
Package Tests / Python package - aitbc-crypto (push) Has been cancelled
Package Tests / Python package - aitbc-sdk (push) Has been cancelled
Package Tests / JavaScript package - aitbc-sdk-js (push) Has been cancelled
Package Tests / JavaScript package - aitbc-token (push) Has been cancelled
Security Scanning / security-scan (push) Has been cancelled
Python Tests / test-python (push) Failing after 3m37s
fix: add aitbc-crypto dependency and fix MyPy errors in aitbc-sdk
- Added aitbc-crypto>=0.1.0 as a dependency in pyproject.toml
- Fixed MyPy error on line 97 (no-any-return) by adding type: ignore comment
- Fixed MyPy error on line 127 (union-attr) by adding None check before calling .json()
2026-04-19 17:55:00 +02:00

27 lines
508 B
TOML

[project]
name = "aitbc-sdk"
version = "0.1.0"
description = "AITBC SDK"
authors = [
{name = "AITBC Team", email = "team@aitbc.dev"}
]
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"cryptography>=41.0.0",
"requests>=2.31.0",
"pydantic>=2.5.0",
"httpx>=0.25.0",
"pynacl>=1.5.0",
"aitbc-crypto>=0.1.0"
]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
packages = [
{ include = "aitbc_sdk", from = "src" }
]