Data aggregation and distribution service: - Market data collection - OHLCV aggregation - Real-time data feeds - Data API endpoints Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
36 lines
755 B
YAML
36 lines
755 B
YAML
name: trading-data-service
|
|
channels:
|
|
- conda-forge
|
|
- defaults
|
|
dependencies:
|
|
- python=3.11
|
|
- pip>=23.0
|
|
|
|
# Core async and networking
|
|
- aiohttp>=3.9.0
|
|
- asyncpg>=0.29.0
|
|
- websockets>=12.0
|
|
|
|
# Data processing
|
|
- pandas>=2.1.0
|
|
- numpy>=1.26.0
|
|
|
|
# Development and code quality
|
|
- pytest>=7.4.0
|
|
- pytest-asyncio>=0.21.0
|
|
- pytest-cov>=4.1.0
|
|
- black>=23.0.0
|
|
- isort>=5.12.0
|
|
- flake8>=6.1.0
|
|
- mypy>=1.5.0
|
|
|
|
# Additional dependencies via pip
|
|
- pip:
|
|
- python-dotenv>=1.0.0
|
|
- structlog>=23.2.0
|
|
- apscheduler>=3.10.0
|
|
- cryptography>=41.0.0
|
|
- pydantic>=2.0.0
|
|
- pydantic-settings>=2.0.0
|
|
# - metaapi-cloud-sdk>=23.0.0 # Optional, uncomment if using MetaAPI
|