Some checks failed
Blockchain Synchronization Verification / sync-verification (push) Failing after 3s
Integration Tests / test-service-integration (push) Has been cancelled
P2P Network Verification / p2p-verification (push) Has been cancelled
Multi-Node Blockchain Health Monitoring / health-check (push) Has been cancelled
Security Scanning / security-scan (push) Has been cancelled
Package Tests / Python package - aitbc-agent-sdk (push) Successful in 16s
Package Tests / Python package - aitbc-core (push) Failing after 12s
Package Tests / Python package - aitbc-crypto (push) Successful in 7s
Package Tests / Python package - aitbc-sdk (push) Successful in 11s
Package Tests / JavaScript package - aitbc-sdk-js (push) Successful in 4s
Package Tests / JavaScript package - aitbc-token (push) Successful in 12s
Python Tests / test-python (push) Successful in 7s
Version 47.0.0 does not exist in PyPI. Reverted to 46.0.0 which is the latest available version and still provides security fixes for the reported vulnerabilities.
27 lines
514 B
TOML
27 lines
514 B
TOML
[project]
|
|
name = "aitbc-core"
|
|
version = "0.1.0"
|
|
description = "AITBC Core Utilities"
|
|
authors = [
|
|
{name = "AITBC Team", email = "team@aitbc.dev"}
|
|
]
|
|
readme = "README.md"
|
|
requires-python = ">=3.13"
|
|
dependencies = [
|
|
"cryptography>=46.0.0",
|
|
"sqlmodel>=0.0.14",
|
|
"fastapi>=0.104.0",
|
|
"uvicorn>=0.24.0",
|
|
"redis>=5.0.0",
|
|
"pydantic>=2.5.0"
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.poetry]
|
|
packages = [
|
|
{ include = "aitbc", from = "src" }
|
|
]
|