Phase 1 OMS implementation: Invoicing: - Add Invoice and VendorInvoiceSettings database models - Full EU VAT support (27 countries, OSS, B2B reverse charge) - Invoice PDF generation with WeasyPrint + Jinja2 templates - Vendor invoice API endpoints for settings, creation, PDF download Subscription Tiers: - Add VendorSubscription model with 4 tiers (Essential/Professional/Business/Enterprise) - Tier limit enforcement for orders, products, team members - Feature gating based on subscription tier - Automatic trial subscription creation for new vendors - Integrate limit checks into order creation (direct and Letzshop sync) Marketing: - Update pricing documentation with 4-tier structure - Revise back-office positioning strategy - Update homepage with Veeqo-inspired Letzshop-focused messaging 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
29 lines
595 B
Plaintext
29 lines
595 B
Plaintext
# requirements.txt - Python 3.13.5 compatible
|
|
# Core FastAPI and web framework
|
|
starlette==0.41.3
|
|
fastapi==0.115.5
|
|
uvicorn[standard]==0.32.1
|
|
pydantic==2.10.3
|
|
pydantic-settings==2.6.1
|
|
pydantic[email]==2.10.3
|
|
|
|
# Database
|
|
sqlalchemy==2.0.36
|
|
psycopg2-binary==2.9.10
|
|
alembic==1.14.0
|
|
|
|
# Authentication and Security
|
|
python-jose[cryptography]==3.3.0
|
|
passlib[bcrypt]==1.7.4
|
|
bcrypt==4.0.1 # Changed from 4.2.1 for Python 3.13.5 compatibility
|
|
python-multipart==0.0.20
|
|
|
|
# Data processing
|
|
pandas==2.2.3
|
|
requests==2.32.3
|
|
|
|
# PDF generation
|
|
weasyprint==62.3
|
|
|
|
# Environment and configuration
|
|
python-dotenv==1.0.1 |