Deletes the global_map_sources, global_overlay_refresh, global_map_cache, and global_overlays service modules and their tests. Removes the refresh-global-overlays CLI command, the /admin/global-overlays/refresh route, and the GlobalOverlaySource view in overlay_detail rendering. Drops py7zr from dependencies — was only used by the deleted subsystem. The job_worker scheduler still tracks refresh_global_overlays; that cleanup is Task 4. Deploy/README references are Task 8. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
32 lines
608 B
TOML
32 lines
608 B
TOML
[build-system]
|
|
requires = ["setuptools>=68", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "l4d2web"
|
|
version = "0.1.0"
|
|
description = "L4D2 web app"
|
|
readme = "README.md"
|
|
requires-python = ">=3.12"
|
|
dependencies = [
|
|
"Flask>=3.0",
|
|
"SQLAlchemy>=2.0",
|
|
"alembic>=1.13",
|
|
"PyYAML>=6.0",
|
|
"gunicorn>=22.0",
|
|
"requests>=2.31",
|
|
]
|
|
|
|
[tool.setuptools]
|
|
packages = ["l4d2web", "l4d2web.routes", "l4d2web.services"]
|
|
|
|
[tool.setuptools.package-dir]
|
|
l4d2web = "."
|
|
|
|
[tool.setuptools.package-data]
|
|
l4d2web = [
|
|
"templates/*.html",
|
|
"static/css/*.css",
|
|
"static/js/*.js",
|
|
"static/vendor/*.js",
|
|
]
|