First commit with entire first rendition of the project

This commit is contained in:
Your Name
2026-06-25 21:18:07 -06:00
commit 551322a94b
42 changed files with 4346 additions and 0 deletions

30
pyproject.toml Normal file
View File

@@ -0,0 +1,30 @@
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "spectra-display"
version = "0.1.0"
description = "Display random Unsplash images on Inky Impression e-paper"
requires-python = ">=3.9"
dependencies = [
"Pillow>=10.0.0",
"requests>=2.28.0",
"PyYAML>=6.0",
"Flask>=3.0.0",
"Flask-SQLAlchemy>=3.1.0",
"paho-mqtt>=1.6.0",
]
[project.scripts]
spectra = "spectra.cli:main"
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-flask>=1.2.0",
]
[tool.setuptools.packages.find]
include = ["spectra*", "tests"]