This directory contains importable libraries without entry points.
Packages in this folder are:
- Importable: Provide reusable functionality
- Library code: No entry points or executables
- Shared: Used by apps and other packages
- Core library (shared business logic)
- Templates (code generation, scaffolding)
- Configuration utilities
- Common utilities and helpers
- Shared types and interfaces
Each package should have:
pyproject.toml- Python dependenciespackage.json- Turborepo task scriptssrc/- Source code (no entry point)tests/- Package testsREADME.md- Package-specific documentation
Packages (this folder):
- No entry points
- Are imported
- Provide reusable functionality
Apps (../apps/):
- Have entry points
- Are deployed/run
- Import from packages