Files
aitbc/packages/py/aitbc-sdk/pyproject.toml
aitbc 0fc735b802
Some checks failed
Integration Tests / test-service-integration (push) Successful in 2m20s
Package Tests / Python package - aitbc-agent-sdk (push) Successful in 32s
Package Tests / Python package - aitbc-core (push) Successful in 22s
Package Tests / Python package - aitbc-crypto (push) Successful in 19s
Package Tests / Python package - aitbc-sdk (push) Failing after 19s
Package Tests / JavaScript package - aitbc-sdk-js (push) Successful in 9s
Package Tests / JavaScript package - aitbc-token (push) Failing after 3s
Python Tests / test-python (push) Failing after 3m15s
Security Scanning / security-scan (push) Failing after 42s
fix: use local path dependency for aitbc-crypto in aitbc-sdk
Changed aitbc-crypto from PyPI dependency to local path dependency since
aitbc-crypto is not published to PyPI and is a local package.
2026-04-19 18:04:42 +02:00

29 lines
569 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"
]
[tool.poetry.dependencies]
aitbc-crypto = { path = "../aitbc-crypto", develop = true }
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
packages = [
{ include = "aitbc_sdk", from = "src" }
]