This commit is contained in:
2026-01-14 07:03:38 +01:00
parent ecda149a4b
commit c91c0f1fc9
61 changed files with 4388 additions and 38 deletions

View File

@@ -21,6 +21,13 @@ Requires-Dist: lxml>=5.1.0
Requires-Dist: cssselect>=1.2.0
Requires-Dist: pyyaml>=6.0.1
Requires-Dist: python-dateutil>=2.8.2
Requires-Dist: sqlalchemy>=2.0.0
Requires-Dist: psycopg2-binary>=2.9.0
Requires-Dist: alembic>=1.13.0
Requires-Dist: python-dotenv>=1.0.0
Requires-Dist: redis>=5.0.0
Requires-Dist: rq>=1.15.0
Requires-Dist: rq-scheduler>=0.13.0
Provides-Extra: dev
Requires-Dist: pytest>=8.0.0; extra == "dev"
Requires-Dist: pytest-cov>=4.1.0; extra == "dev"

View File

@@ -11,6 +11,7 @@ pricewatch/app/__init__.py
pricewatch/app/cli/__init__.py
pricewatch/app/cli/main.py
pricewatch/app/core/__init__.py
pricewatch/app/core/config.py
pricewatch/app/core/io.py
pricewatch/app/core/logging.py
pricewatch/app/core/registry.py

View File

@@ -9,6 +9,13 @@ lxml>=5.1.0
cssselect>=1.2.0
pyyaml>=6.0.1
python-dateutil>=2.8.2
sqlalchemy>=2.0.0
psycopg2-binary>=2.9.0
alembic>=1.13.0
python-dotenv>=1.0.0
redis>=5.0.0
rq>=1.15.0
rq-scheduler>=0.13.0
[dev]
pytest>=8.0.0