Implement story 1.1: project scaffold and verified entry points
Creates the complete src/planemapper/ layout with all module stubs, provisioning and renderer subpackages, airports.csv data bundle, systemd unit files, and full test scaffold. All three quality gates pass: pytest 12/12, ruff check zero violations, ruff format clean. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -0,0 +1,35 @@
|
||||
[build-system]
|
||||
requires = ["setuptools>=68", "wheel"]
|
||||
build-backend = "setuptools.build_meta"
|
||||
|
||||
[project]
|
||||
name = "planemapper"
|
||||
version = "0.1.0"
|
||||
requires-python = ">=3.11"
|
||||
dependencies = [
|
||||
"Pillow==12.2.0",
|
||||
"gpiozero==2.0.1",
|
||||
"Flask==3.1.3",
|
||||
"requests==2.33.1",
|
||||
]
|
||||
|
||||
[project.scripts]
|
||||
planemapper-radar = "planemapper.main:main"
|
||||
planemapper-provision = "planemapper.provision:main"
|
||||
|
||||
[tool.setuptools.packages.find]
|
||||
where = ["src"]
|
||||
|
||||
[tool.setuptools.package-data]
|
||||
"planemapper" = ["data/airports.csv"]
|
||||
|
||||
[tool.ruff]
|
||||
line-length = 100
|
||||
target-version = "py311"
|
||||
exclude = [".claude", "_bmad", "_bmad-output"]
|
||||
|
||||
[tool.ruff.lint]
|
||||
select = ["E", "F", "I", "UP"]
|
||||
|
||||
[tool.ruff.lint.per-file-ignores]
|
||||
"src/planemapper/main.py" = ["TID252"]
|
||||
Reference in New Issue
Block a user