- Configure workspace Git repository with comprehensive .gitignore - Add Odoo as submodule for ERP reference code - Include documentation: SETUP.md, GIT-STRUCTURE.md - Add gitignore templates for projects (backend, frontend, database) - Structure supports independent repos per project/subproject level Workspace includes: - core/ - Reusable patterns, modules, orchestration system - projects/ - Active projects (erp-suite, gamilit, trading-platform, etc.) - knowledge-base/ - Reference code and patterns (includes Odoo submodule) - devtools/ - Development tools and templates - customers/ - Client implementations template 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
56 lines
728 B
Plaintext
56 lines
728 B
Plaintext
# Trading Agents Service - Python Dependencies
|
|
|
|
# Core
|
|
python-dotenv==1.0.0
|
|
pyyaml==6.0.1
|
|
pydantic==2.5.3
|
|
|
|
# Async
|
|
aiohttp==3.9.1
|
|
asyncio==3.4.3
|
|
|
|
# Data processing
|
|
pandas==2.1.4
|
|
numpy==1.26.2
|
|
|
|
# API
|
|
fastapi==0.108.0
|
|
uvicorn[standard]==0.25.0
|
|
python-multipart==0.0.6
|
|
|
|
# Database
|
|
asyncpg==0.29.0
|
|
sqlalchemy==2.0.23
|
|
alembic==1.13.1
|
|
|
|
# Trading
|
|
ccxt==4.1.92
|
|
ta==0.11.0 # Technical analysis library
|
|
|
|
# ML/Stats
|
|
scikit-learn==1.3.2
|
|
scipy==1.11.4
|
|
|
|
# Crypto
|
|
cryptography==41.0.7
|
|
python-binance==1.0.19
|
|
|
|
# Logging
|
|
loguru==0.7.2
|
|
|
|
# Testing
|
|
pytest==7.4.3
|
|
pytest-asyncio==0.21.1
|
|
pytest-cov==4.1.0
|
|
httpx==0.25.2
|
|
|
|
# Development
|
|
black==23.12.1
|
|
flake8==6.1.0
|
|
mypy==1.7.1
|
|
isort==5.13.2
|
|
|
|
# Monitoring
|
|
prometheus-client==0.19.0
|
|
sentry-sdk==1.39.1
|