- 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>
47 lines
783 B
Plaintext
47 lines
783 B
Plaintext
# Data Service Dependencies
|
|
# OrbiQuant IA Trading Platform
|
|
# Python 3.11+
|
|
|
|
# Async HTTP client
|
|
aiohttp>=3.9.0
|
|
|
|
# PostgreSQL async driver
|
|
asyncpg>=0.29.0
|
|
|
|
# Data processing
|
|
pandas>=2.1.0
|
|
numpy>=1.26.0
|
|
|
|
# Data validation
|
|
pydantic>=2.0.0
|
|
pydantic-settings>=2.0.0
|
|
|
|
# Environment variables
|
|
python-dotenv>=1.0.0
|
|
|
|
# Logging
|
|
structlog>=23.2.0
|
|
|
|
# Scheduling
|
|
apscheduler>=3.10.0
|
|
|
|
# MetaAPI SDK (for MT4/MT5 cloud access)
|
|
# metaapi-cloud-sdk>=23.0.0 # Optional, uncomment if using MetaAPI
|
|
|
|
# WebSocket client (for real-time data)
|
|
websockets>=12.0
|
|
|
|
# Cryptography (for password encryption)
|
|
cryptography>=41.0.0
|
|
|
|
# Testing
|
|
pytest>=7.4.0
|
|
pytest-asyncio>=0.21.0
|
|
pytest-cov>=4.1.0
|
|
|
|
# Code Quality
|
|
black>=23.0.0
|
|
isort>=5.12.0
|
|
flake8>=6.1.0
|
|
mypy>=1.5.0
|