winebox 0.1.1__tar.gz → 0.1.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {winebox-0.1.1 → winebox-0.1.2}/.github/workflows/publish.yml +0 -22
- {winebox-0.1.1 → winebox-0.1.2}/PKG-INFO +1 -1
- {winebox-0.1.1 → winebox-0.1.2}/pyproject.toml +1 -1
- {winebox-0.1.1 → winebox-0.1.2}/.github/workflows/ci.yml +0 -0
- {winebox-0.1.1 → winebox-0.1.2}/.gitignore +0 -0
- {winebox-0.1.1 → winebox-0.1.2}/.python-version +0 -0
- {winebox-0.1.1 → winebox-0.1.2}/LICENSE +0 -0
- {winebox-0.1.1 → winebox-0.1.2}/README.md +0 -0
- {winebox-0.1.1 → winebox-0.1.2}/docs/api-reference.md +0 -0
- {winebox-0.1.1 → winebox-0.1.2}/docs/conf.py +0 -0
- {winebox-0.1.1 → winebox-0.1.2}/docs/index.md +0 -0
- {winebox-0.1.1 → winebox-0.1.2}/docs/user-guide.md +0 -0
- {winebox-0.1.1 → winebox-0.1.2}/tasks.py +0 -0
- {winebox-0.1.1 → winebox-0.1.2}/tests/__init__.py +0 -0
- {winebox-0.1.1 → winebox-0.1.2}/tests/conftest.py +0 -0
- {winebox-0.1.1 → winebox-0.1.2}/tests/test_ocr.py +0 -0
- {winebox-0.1.1 → winebox-0.1.2}/tests/test_search.py +0 -0
- {winebox-0.1.1 → winebox-0.1.2}/tests/test_transactions.py +0 -0
- {winebox-0.1.1 → winebox-0.1.2}/tests/test_wines.py +0 -0
- {winebox-0.1.1 → winebox-0.1.2}/uv.lock +0 -0
- {winebox-0.1.1 → winebox-0.1.2}/winebox/__init__.py +0 -0
- {winebox-0.1.1 → winebox-0.1.2}/winebox/cli/__init__.py +0 -0
- {winebox-0.1.1 → winebox-0.1.2}/winebox/cli/server.py +0 -0
- {winebox-0.1.1 → winebox-0.1.2}/winebox/cli/user_admin.py +0 -0
- {winebox-0.1.1 → winebox-0.1.2}/winebox/config.py +0 -0
- {winebox-0.1.1 → winebox-0.1.2}/winebox/database.py +0 -0
- {winebox-0.1.1 → winebox-0.1.2}/winebox/main.py +0 -0
- {winebox-0.1.1 → winebox-0.1.2}/winebox/models/__init__.py +0 -0
- {winebox-0.1.1 → winebox-0.1.2}/winebox/models/inventory.py +0 -0
- {winebox-0.1.1 → winebox-0.1.2}/winebox/models/transaction.py +0 -0
- {winebox-0.1.1 → winebox-0.1.2}/winebox/models/user.py +0 -0
- {winebox-0.1.1 → winebox-0.1.2}/winebox/models/wine.py +0 -0
- {winebox-0.1.1 → winebox-0.1.2}/winebox/routers/__init__.py +0 -0
- {winebox-0.1.1 → winebox-0.1.2}/winebox/routers/auth.py +0 -0
- {winebox-0.1.1 → winebox-0.1.2}/winebox/routers/cellar.py +0 -0
- {winebox-0.1.1 → winebox-0.1.2}/winebox/routers/search.py +0 -0
- {winebox-0.1.1 → winebox-0.1.2}/winebox/routers/transactions.py +0 -0
- {winebox-0.1.1 → winebox-0.1.2}/winebox/routers/wines.py +0 -0
- {winebox-0.1.1 → winebox-0.1.2}/winebox/schemas/__init__.py +0 -0
- {winebox-0.1.1 → winebox-0.1.2}/winebox/schemas/transaction.py +0 -0
- {winebox-0.1.1 → winebox-0.1.2}/winebox/schemas/wine.py +0 -0
- {winebox-0.1.1 → winebox-0.1.2}/winebox/services/__init__.py +0 -0
- {winebox-0.1.1 → winebox-0.1.2}/winebox/services/auth.py +0 -0
- {winebox-0.1.1 → winebox-0.1.2}/winebox/services/image_storage.py +0 -0
- {winebox-0.1.1 → winebox-0.1.2}/winebox/services/ocr.py +0 -0
- {winebox-0.1.1 → winebox-0.1.2}/winebox/services/wine_parser.py +0 -0
- {winebox-0.1.1 → winebox-0.1.2}/winebox/static/css/style.css +0 -0
- {winebox-0.1.1 → winebox-0.1.2}/winebox/static/index.html +0 -0
- {winebox-0.1.1 → winebox-0.1.2}/winebox/static/js/app.js +0 -0
|
@@ -50,25 +50,3 @@ jobs:
|
|
|
50
50
|
|
|
51
51
|
- name: Publish to PyPI
|
|
52
52
|
uses: pypa/gh-action-pypi-publish@release/v1
|
|
53
|
-
|
|
54
|
-
publish-to-testpypi:
|
|
55
|
-
name: Publish to TestPyPI
|
|
56
|
-
needs: build
|
|
57
|
-
runs-on: ubuntu-latest
|
|
58
|
-
environment:
|
|
59
|
-
name: testpypi
|
|
60
|
-
url: https://test.pypi.org/p/winebox
|
|
61
|
-
permissions:
|
|
62
|
-
id-token: write # Required for trusted publishing
|
|
63
|
-
|
|
64
|
-
steps:
|
|
65
|
-
- name: Download distributions
|
|
66
|
-
uses: actions/download-artifact@v4
|
|
67
|
-
with:
|
|
68
|
-
name: python-package-distributions
|
|
69
|
-
path: dist/
|
|
70
|
-
|
|
71
|
-
- name: Publish to TestPyPI
|
|
72
|
-
uses: pypa/gh-action-pypi-publish@release/v1
|
|
73
|
-
with:
|
|
74
|
-
repository-url: https://test.pypi.org/legacy/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: winebox
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.2
|
|
4
4
|
Summary: Wine Cellar Management Application with OCR label scanning
|
|
5
5
|
Project-URL: Homepage, https://github.com/jdrumgoole/winebox
|
|
6
6
|
Project-URL: Repository, https://github.com/jdrumgoole/winebox
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|