- 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>
36 lines
757 B
YAML
36 lines
757 B
YAML
name: orbiquant-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
|