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.
Files changed (49) hide show
  1. {winebox-0.1.1 → winebox-0.1.2}/.github/workflows/publish.yml +0 -22
  2. {winebox-0.1.1 → winebox-0.1.2}/PKG-INFO +1 -1
  3. {winebox-0.1.1 → winebox-0.1.2}/pyproject.toml +1 -1
  4. {winebox-0.1.1 → winebox-0.1.2}/.github/workflows/ci.yml +0 -0
  5. {winebox-0.1.1 → winebox-0.1.2}/.gitignore +0 -0
  6. {winebox-0.1.1 → winebox-0.1.2}/.python-version +0 -0
  7. {winebox-0.1.1 → winebox-0.1.2}/LICENSE +0 -0
  8. {winebox-0.1.1 → winebox-0.1.2}/README.md +0 -0
  9. {winebox-0.1.1 → winebox-0.1.2}/docs/api-reference.md +0 -0
  10. {winebox-0.1.1 → winebox-0.1.2}/docs/conf.py +0 -0
  11. {winebox-0.1.1 → winebox-0.1.2}/docs/index.md +0 -0
  12. {winebox-0.1.1 → winebox-0.1.2}/docs/user-guide.md +0 -0
  13. {winebox-0.1.1 → winebox-0.1.2}/tasks.py +0 -0
  14. {winebox-0.1.1 → winebox-0.1.2}/tests/__init__.py +0 -0
  15. {winebox-0.1.1 → winebox-0.1.2}/tests/conftest.py +0 -0
  16. {winebox-0.1.1 → winebox-0.1.2}/tests/test_ocr.py +0 -0
  17. {winebox-0.1.1 → winebox-0.1.2}/tests/test_search.py +0 -0
  18. {winebox-0.1.1 → winebox-0.1.2}/tests/test_transactions.py +0 -0
  19. {winebox-0.1.1 → winebox-0.1.2}/tests/test_wines.py +0 -0
  20. {winebox-0.1.1 → winebox-0.1.2}/uv.lock +0 -0
  21. {winebox-0.1.1 → winebox-0.1.2}/winebox/__init__.py +0 -0
  22. {winebox-0.1.1 → winebox-0.1.2}/winebox/cli/__init__.py +0 -0
  23. {winebox-0.1.1 → winebox-0.1.2}/winebox/cli/server.py +0 -0
  24. {winebox-0.1.1 → winebox-0.1.2}/winebox/cli/user_admin.py +0 -0
  25. {winebox-0.1.1 → winebox-0.1.2}/winebox/config.py +0 -0
  26. {winebox-0.1.1 → winebox-0.1.2}/winebox/database.py +0 -0
  27. {winebox-0.1.1 → winebox-0.1.2}/winebox/main.py +0 -0
  28. {winebox-0.1.1 → winebox-0.1.2}/winebox/models/__init__.py +0 -0
  29. {winebox-0.1.1 → winebox-0.1.2}/winebox/models/inventory.py +0 -0
  30. {winebox-0.1.1 → winebox-0.1.2}/winebox/models/transaction.py +0 -0
  31. {winebox-0.1.1 → winebox-0.1.2}/winebox/models/user.py +0 -0
  32. {winebox-0.1.1 → winebox-0.1.2}/winebox/models/wine.py +0 -0
  33. {winebox-0.1.1 → winebox-0.1.2}/winebox/routers/__init__.py +0 -0
  34. {winebox-0.1.1 → winebox-0.1.2}/winebox/routers/auth.py +0 -0
  35. {winebox-0.1.1 → winebox-0.1.2}/winebox/routers/cellar.py +0 -0
  36. {winebox-0.1.1 → winebox-0.1.2}/winebox/routers/search.py +0 -0
  37. {winebox-0.1.1 → winebox-0.1.2}/winebox/routers/transactions.py +0 -0
  38. {winebox-0.1.1 → winebox-0.1.2}/winebox/routers/wines.py +0 -0
  39. {winebox-0.1.1 → winebox-0.1.2}/winebox/schemas/__init__.py +0 -0
  40. {winebox-0.1.1 → winebox-0.1.2}/winebox/schemas/transaction.py +0 -0
  41. {winebox-0.1.1 → winebox-0.1.2}/winebox/schemas/wine.py +0 -0
  42. {winebox-0.1.1 → winebox-0.1.2}/winebox/services/__init__.py +0 -0
  43. {winebox-0.1.1 → winebox-0.1.2}/winebox/services/auth.py +0 -0
  44. {winebox-0.1.1 → winebox-0.1.2}/winebox/services/image_storage.py +0 -0
  45. {winebox-0.1.1 → winebox-0.1.2}/winebox/services/ocr.py +0 -0
  46. {winebox-0.1.1 → winebox-0.1.2}/winebox/services/wine_parser.py +0 -0
  47. {winebox-0.1.1 → winebox-0.1.2}/winebox/static/css/style.css +0 -0
  48. {winebox-0.1.1 → winebox-0.1.2}/winebox/static/index.html +0 -0
  49. {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.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
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "winebox"
3
- version = "0.1.1"
3
+ version = "0.1.2"
4
4
  description = "Wine Cellar Management Application with OCR label scanning"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.11"
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