Files
aitbc/apps/aitbc-edge/pyproject.toml
aitbc bd08848e0d
Some checks failed
Cross-Node Transaction Testing / transaction-test (push) Has been cancelled
Deploy to Testnet / deploy-testnet (push) Has been cancelled
Documentation Validation / validate-docs (push) Has been cancelled
Documentation Validation / validate-policies-strict (push) Has been cancelled
Multi-Node Stress Testing / stress-test (push) Has been cancelled
Integration Tests / test-service-integration (push) Failing after 3s
Python Tests / test-python (push) Failing after 32s
Security Scanning / security-scan (push) Successful in 32s
refactor: rename packages to shorter names
- Renamed aitbc-ai-service to aitbc-ai
- Renamed aitbc-edge-api to aitbc-edge
- Updated pyproject.toml files with new package names
- Renamed directories and package modules
- Updated references in documentation and scripts
- Updated systemd service references
2026-05-20 08:30:51 +02:00

25 lines
580 B
TOML

[project]
name = "aitbc-edge"
version = "0.1.0"
description = "Edge API Service for AITBC island and edge operations"
requires-python = ">=3.13"
dependencies = [
"fastapi>=0.115.6",
"uvicorn>=0.34.0",
"sqlmodel>=0.0.38",
"sqlalchemy[asyncio]>=2.0.49",
"asyncpg>=0.30.0",
"httpx>=0.28.1",
"pydantic>=2.11.0",
"pydantic-settings>=2.13.1",
"python-jose[cryptography]>=3.3.0",
"passlib[bcrypt]>=1.7.4",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/aitbc_edge"]