mirror of
https://github.com/smittix/intercept.git
synced 2026-04-25 07:10:00 -07:00
- Add GPS dongle support with NMEA parsing (utils/gps.py, routes/gps.py) - Add GPS device selector to ADS-B and Satellite observer location sections - Add GPS dongle option to ADS-B dashboard - Fix Python 3.7/3.8 compatibility by adding 'from __future__ import annotations' to all SDR module files (fixes TypeError: 'type' object is not subscriptable) - Add pyserial to requirements.txt - Update README with GPS dongle documentation and troubleshooting 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
16 lines
376 B
Plaintext
16 lines
376 B
Plaintext
# Core dependencies
|
|
flask>=2.0.0
|
|
|
|
# Satellite tracking (optional - only needed for satellite features)
|
|
skyfield>=1.45
|
|
|
|
# GPS dongle support (optional - only needed for USB GPS receivers)
|
|
pyserial>=3.5
|
|
|
|
# Development dependencies (install with: pip install -r requirements-dev.txt)
|
|
# pytest>=7.0.0
|
|
# pytest-cov>=4.0.0
|
|
# ruff>=0.1.0
|
|
# black>=23.0.0
|
|
# mypy>=1.0.0
|