Add uv installation instructions and update pyproject.toml

- Add uv quick start option to README (collapsible section)
- Add Python Dependencies section to HARDWARE.md with multiple options:
  - setup.sh (recommended)
  - pip with requirements.txt
  - uv with uv sync
  - pip with pyproject.toml
- Update pyproject.toml:
  - Bump version to 1.1.0
  - Add pyserial to dependencies
  - Add project URLs
This commit is contained in:
Smittix
2026-01-05 10:12:03 +00:00
parent b11165da6f
commit 5537fdfe5a
3 changed files with 58 additions and 1 deletions
+7 -1
View File
@@ -1,6 +1,6 @@
[project]
name = "intercept"
version = "1.0.0"
version = "1.1.0"
description = "Signal Intelligence Platform - Pager/433MHz/ADS-B/Satellite/WiFi/Bluetooth"
readme = "README.md"
requires-python = ">=3.9"
@@ -28,8 +28,14 @@ classifiers = [
dependencies = [
"flask>=2.0.0",
"skyfield>=1.45",
"pyserial>=3.5",
]
[project.urls]
Homepage = "https://github.com/smittix/intercept"
Repository = "https://github.com/smittix/intercept"
Issues = "https://github.com/smittix/intercept/issues"
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",