Remove duplicate dependencies from app-specific pyproject.toml files

- Updated all 6 app pyproject.toml files to reference root dependencies
- coordinator-api, blockchain-node, wallet, agent-coordinator, pool-hub, blockchain-event-bridge
- Kept package structure definitions and local path dependencies
- This completes dependency consolidation to single source of truth at root
This commit is contained in:
aitbc
2026-04-30 10:47:50 +02:00
parent 4f2f5869f4
commit a31258cc2d
6 changed files with 20 additions and 68 deletions

View File

@@ -5,27 +5,12 @@ description = "AITBC Agent Coordination System"
authors = ["AITBC Team"]
[tool.poetry.dependencies]
python = "^3.9"
fastapi = "^0.104.0"
uvicorn = "^0.24.0"
pydantic = "^2.4.0"
redis = "^5.0.0"
celery = "^5.3.0"
websockets = "^12.0"
aiohttp = "^3.9.0"
pyjwt = "^2.8.0"
bcrypt = "^4.0.0"
prometheus-client = "^0.18.0"
psutil = "^5.9.0"
numpy = "^1.24.0"
python = "^3.13"
# All dependencies managed centrally in root pyproject.toml
# This file only defines package structure for the agent-coordinator
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.0"
pytest-asyncio = "^0.21.0"
black = "^23.9.0"
mypy = "^1.6.0"
types-redis = "^4.6.0"
types-requests = "^2.31.0"
# Dev dependencies managed centrally in root pyproject.toml
[tool.mypy]
python_version = "3.9"

View File

@@ -7,21 +7,11 @@ readme = "README.md"
[tool.poetry.dependencies]
python = "^3.13"
fastapi = "^0.115.0"
uvicorn = {extras = ["standard"], version = "^0.32.0"}
httpx = "^0.27.0"
pydantic = "^2.9.0"
pydantic-settings = "^2.6.0"
prometheus-client = "^0.21.0"
aiosqlite = "^0.20.0"
# All dependencies managed centrally in root pyproject.toml
# This file only defines package structure for the blockchain-event-bridge
[tool.poetry.group.dev.dependencies]
pytest = ">=8.3.0"
pytest-asyncio = "^0.24.0"
pytest-cov = "^6.0.0"
black = "^24.10.0"
ruff = "^0.8.0"
mypy = "^1.13.0"
# Dev dependencies managed centrally in root pyproject.toml
[build-system]
requires = ["poetry-core"]

View File

@@ -9,16 +9,14 @@ packages = [
[tool.poetry.dependencies]
python = "^3.13"
cryptography = ">=46.0.0"
# All dependencies managed centrally in /opt/aitbc/requirements-consolidated.txt
# Use: ./scripts/install-profiles.sh web database blockchain
# All dependencies managed centrally in root pyproject.toml
# This file only defines package structure for the blockchain-node
[tool.poetry.extras]
uvloop = ["uvloop"]
[tool.poetry.group.dev.dependencies]
pytest = ">=8.3.0"
pytest-asyncio = ">=0.23.0"
# Dev dependencies managed centrally in root pyproject.toml
[build-system]
requires = ["poetry-core>=1.0.0"]

View File

@@ -8,14 +8,12 @@ packages = [
]
[tool.poetry.dependencies]
python = ">=3.13,<3.15"
# All dependencies managed centrally in /opt/aitbc/requirements-consolidated.txt
# Use: ./scripts/install-profiles.sh web database blockchain
python = "^3.13"
# All dependencies managed centrally in root pyproject.toml
# This file only defines package structure for the coordinator-api
[tool.poetry.group.dev.dependencies]
pytest = ">=8.3.0"
pytest-asyncio = ">=0.23.0"
httpx = {extras=["cli"], version=">=0.27.0"}
# Dev dependencies managed centrally in root pyproject.toml
[build-system]
requires = ["poetry-core>=1.0.0"]

View File

@@ -8,22 +8,12 @@ packages = [{include = "app", from = "src"}]
[tool.poetry.dependencies]
python = "^3.13"
fastapi = "^0.111.0"
uvicorn = {extras = ["standard"], version = "^0.30.0"}
pydantic = "^2.7.0"
pydantic-settings = "^2.2.1"
sqlalchemy = {extras = ["asyncio"], version = "^2.0.47"}
aiosqlite = "^0.20.0"
sqlmodel = "^0.0.16"
httpx = "^0.27.0"
python-dotenv = "^1.0.1"
asyncpg = "^0.30.0"
alembic = "^1.13.0"
aitbc-core = {path = "../../packages/py/aitbc-core"}
# All other dependencies managed centrally in root pyproject.toml
# This file only defines package structure for the pool-hub
[tool.poetry.group.dev.dependencies]
pytest = ">=8.3.0"
pytest-asyncio = "^0.23.0"
# Dev dependencies managed centrally in root pyproject.toml
[build-system]
requires = ["poetry-core"]

View File

@@ -8,21 +8,12 @@ packages = [{include = "app", from = "src"}]
[tool.poetry.dependencies]
python = "^3.13"
fastapi = "^0.111.0"
uvicorn = {extras = ["standard"], version = "^0.30.0"}
pydantic = "^2.7.0"
pydantic-settings = "^2.2.1"
sqlalchemy = {extras = ["asyncio"], version = "^2.0.47"}
aiosqlite = "^0.20.0"
sqlmodel = "^0.0.16"
httpx = "^0.27.0"
python-dotenv = "^1.0.1"
asyncpg = "^0.29.0"
aitbc-core = {path = "../../packages/py/aitbc-core"}
# All other dependencies managed centrally in root pyproject.toml
# This file only defines package structure for the wallet daemon
[tool.poetry.group.dev.dependencies]
pytest = ">=8.3.0"
pytest-asyncio = "^0.23.0"
# Dev dependencies managed centrally in root pyproject.toml
[build-system]
requires = ["poetry-core"]