oxutils 0.1.5__tar.gz → 0.1.6__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.
- {oxutils-0.1.5 → oxutils-0.1.6}/PKG-INFO +8 -1
- {oxutils-0.1.5 → oxutils-0.1.6}/pyproject.toml +13 -9
- {oxutils-0.1.5 → oxutils-0.1.6}/src/oxutils/__init__.py +1 -1
- {oxutils-0.1.5 → oxutils-0.1.6}/README.md +0 -0
- {oxutils-0.1.5 → oxutils-0.1.6}/src/oxutils/apps.py +0 -0
- {oxutils-0.1.5 → oxutils-0.1.6}/src/oxutils/audit/__init__.py +0 -0
- {oxutils-0.1.5 → oxutils-0.1.6}/src/oxutils/audit/apps.py +0 -0
- {oxutils-0.1.5 → oxutils-0.1.6}/src/oxutils/audit/export.py +0 -0
- {oxutils-0.1.5 → oxutils-0.1.6}/src/oxutils/audit/masks.py +0 -0
- {oxutils-0.1.5 → oxutils-0.1.6}/src/oxutils/audit/migrations/0001_initial.py +0 -0
- {oxutils-0.1.5 → oxutils-0.1.6}/src/oxutils/audit/migrations/__init__.py +0 -0
- {oxutils-0.1.5 → oxutils-0.1.6}/src/oxutils/audit/models.py +0 -0
- {oxutils-0.1.5 → oxutils-0.1.6}/src/oxutils/audit/settings.py +0 -0
- {oxutils-0.1.5 → oxutils-0.1.6}/src/oxutils/audit/utils.py +0 -0
- {oxutils-0.1.5 → oxutils-0.1.6}/src/oxutils/celery/__init__.py +0 -0
- {oxutils-0.1.5 → oxutils-0.1.6}/src/oxutils/celery/base.py +0 -0
- {oxutils-0.1.5 → oxutils-0.1.6}/src/oxutils/celery/settings.py +0 -0
- {oxutils-0.1.5 → oxutils-0.1.6}/src/oxutils/conf.py +0 -0
- {oxutils-0.1.5 → oxutils-0.1.6}/src/oxutils/constants.py +0 -0
- {oxutils-0.1.5 → oxutils-0.1.6}/src/oxutils/context/__init__.py +0 -0
- {oxutils-0.1.5 → oxutils-0.1.6}/src/oxutils/context/site_name_processor.py +0 -0
- {oxutils-0.1.5 → oxutils-0.1.6}/src/oxutils/currency/__init__.py +0 -0
- {oxutils-0.1.5 → oxutils-0.1.6}/src/oxutils/currency/admin.py +0 -0
- {oxutils-0.1.5 → oxutils-0.1.6}/src/oxutils/currency/apps.py +0 -0
- {oxutils-0.1.5 → oxutils-0.1.6}/src/oxutils/currency/controllers.py +0 -0
- {oxutils-0.1.5 → oxutils-0.1.6}/src/oxutils/currency/enums.py +0 -0
- {oxutils-0.1.5 → oxutils-0.1.6}/src/oxutils/currency/migrations/0001_initial.py +0 -0
- {oxutils-0.1.5 → oxutils-0.1.6}/src/oxutils/currency/migrations/__init__.py +0 -0
- {oxutils-0.1.5 → oxutils-0.1.6}/src/oxutils/currency/models.py +0 -0
- {oxutils-0.1.5 → oxutils-0.1.6}/src/oxutils/currency/schemas.py +0 -0
- {oxutils-0.1.5 → oxutils-0.1.6}/src/oxutils/currency/tests.py +0 -0
- {oxutils-0.1.5 → oxutils-0.1.6}/src/oxutils/currency/utils.py +0 -0
- {oxutils-0.1.5 → oxutils-0.1.6}/src/oxutils/enums/__init__.py +0 -0
- {oxutils-0.1.5 → oxutils-0.1.6}/src/oxutils/enums/audit.py +0 -0
- {oxutils-0.1.5 → oxutils-0.1.6}/src/oxutils/enums/invoices.py +0 -0
- {oxutils-0.1.5 → oxutils-0.1.6}/src/oxutils/exceptions.py +0 -0
- {oxutils-0.1.5 → oxutils-0.1.6}/src/oxutils/functions.py +0 -0
- {oxutils-0.1.5 → oxutils-0.1.6}/src/oxutils/jwt/__init__.py +0 -0
- {oxutils-0.1.5 → oxutils-0.1.6}/src/oxutils/jwt/auth.py +0 -0
- {oxutils-0.1.5 → oxutils-0.1.6}/src/oxutils/jwt/client.py +0 -0
- {oxutils-0.1.5 → oxutils-0.1.6}/src/oxutils/jwt/constants.py +0 -0
- {oxutils-0.1.5 → oxutils-0.1.6}/src/oxutils/locale/fr/LC_MESSAGES/django.po +0 -0
- {oxutils-0.1.5 → oxutils-0.1.6}/src/oxutils/logger/__init__.py +0 -0
- {oxutils-0.1.5 → oxutils-0.1.6}/src/oxutils/logger/receivers.py +0 -0
- {oxutils-0.1.5 → oxutils-0.1.6}/src/oxutils/logger/settings.py +0 -0
- {oxutils-0.1.5 → oxutils-0.1.6}/src/oxutils/mixins/__init__.py +0 -0
- {oxutils-0.1.5 → oxutils-0.1.6}/src/oxutils/mixins/base.py +0 -0
- {oxutils-0.1.5 → oxutils-0.1.6}/src/oxutils/mixins/schemas.py +0 -0
- {oxutils-0.1.5 → oxutils-0.1.6}/src/oxutils/mixins/services.py +0 -0
- {oxutils-0.1.5 → oxutils-0.1.6}/src/oxutils/models/__init__.py +0 -0
- {oxutils-0.1.5 → oxutils-0.1.6}/src/oxutils/models/base.py +0 -0
- {oxutils-0.1.5 → oxutils-0.1.6}/src/oxutils/models/billing.py +0 -0
- {oxutils-0.1.5 → oxutils-0.1.6}/src/oxutils/models/invoice.py +0 -0
- {oxutils-0.1.5 → oxutils-0.1.6}/src/oxutils/oxiliere/__init__.py +0 -0
- {oxutils-0.1.5 → oxutils-0.1.6}/src/oxutils/oxiliere/admin.py +0 -0
- {oxutils-0.1.5 → oxutils-0.1.6}/src/oxutils/oxiliere/apps.py +0 -0
- {oxutils-0.1.5 → oxutils-0.1.6}/src/oxutils/oxiliere/cacheops.py +0 -0
- {oxutils-0.1.5 → oxutils-0.1.6}/src/oxutils/oxiliere/caches.py +0 -0
- {oxutils-0.1.5 → oxutils-0.1.6}/src/oxutils/oxiliere/controllers.py +0 -0
- {oxutils-0.1.5 → oxutils-0.1.6}/src/oxutils/oxiliere/enums.py +0 -0
- {oxutils-0.1.5 → oxutils-0.1.6}/src/oxutils/oxiliere/management/__init__.py +0 -0
- {oxutils-0.1.5 → oxutils-0.1.6}/src/oxutils/oxiliere/management/commands/__init__.py +0 -0
- {oxutils-0.1.5 → oxutils-0.1.6}/src/oxutils/oxiliere/management/commands/init_oxiliere_system.py +0 -0
- {oxutils-0.1.5 → oxutils-0.1.6}/src/oxutils/oxiliere/middleware.py +0 -0
- {oxutils-0.1.5 → oxutils-0.1.6}/src/oxutils/oxiliere/migrations/__init__.py +0 -0
- {oxutils-0.1.5 → oxutils-0.1.6}/src/oxutils/oxiliere/models.py +0 -0
- {oxutils-0.1.5 → oxutils-0.1.6}/src/oxutils/oxiliere/permissions.py +0 -0
- {oxutils-0.1.5 → oxutils-0.1.6}/src/oxutils/oxiliere/schemas.py +0 -0
- {oxutils-0.1.5 → oxutils-0.1.6}/src/oxutils/oxiliere/settings.py +0 -0
- {oxutils-0.1.5 → oxutils-0.1.6}/src/oxutils/oxiliere/tests.py +0 -0
- {oxutils-0.1.5 → oxutils-0.1.6}/src/oxutils/oxiliere/utils.py +0 -0
- {oxutils-0.1.5 → oxutils-0.1.6}/src/oxutils/pdf/__init__.py +0 -0
- {oxutils-0.1.5 → oxutils-0.1.6}/src/oxutils/pdf/printer.py +0 -0
- {oxutils-0.1.5 → oxutils-0.1.6}/src/oxutils/pdf/utils.py +0 -0
- {oxutils-0.1.5 → oxutils-0.1.6}/src/oxutils/pdf/views.py +0 -0
- {oxutils-0.1.5 → oxutils-0.1.6}/src/oxutils/py.typed +0 -0
- {oxutils-0.1.5 → oxutils-0.1.6}/src/oxutils/s3/__init__.py +0 -0
- {oxutils-0.1.5 → oxutils-0.1.6}/src/oxutils/s3/settings.py +0 -0
- {oxutils-0.1.5 → oxutils-0.1.6}/src/oxutils/s3/storages.py +0 -0
- {oxutils-0.1.5 → oxutils-0.1.6}/src/oxutils/settings.py +0 -0
- {oxutils-0.1.5 → oxutils-0.1.6}/src/oxutils/types.py +0 -0
- {oxutils-0.1.5 → oxutils-0.1.6}/src/oxutils/users/__init__.py +0 -0
- {oxutils-0.1.5 → oxutils-0.1.6}/src/oxutils/users/admin.py +0 -0
- {oxutils-0.1.5 → oxutils-0.1.6}/src/oxutils/users/apps.py +0 -0
- {oxutils-0.1.5 → oxutils-0.1.6}/src/oxutils/users/migrations/__init__.py +0 -0
- {oxutils-0.1.5 → oxutils-0.1.6}/src/oxutils/users/models.py +0 -0
- {oxutils-0.1.5 → oxutils-0.1.6}/src/oxutils/users/tests.py +0 -0
- {oxutils-0.1.5 → oxutils-0.1.6}/src/oxutils/users/utils.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: oxutils
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.6
|
|
4
4
|
Summary: Production-ready utilities for Django applications in the Oxiliere ecosystem
|
|
5
5
|
Keywords: django,utilities,jwt,s3,audit,logging,celery,structlog
|
|
6
6
|
Author: Edimedia Mutoke
|
|
@@ -30,12 +30,19 @@ Requires-Dist: jwcrypto>=1.5.6
|
|
|
30
30
|
Requires-Dist: pydantic-settings>=2.12.0
|
|
31
31
|
Requires-Dist: pyjwt>=2.10.1
|
|
32
32
|
Requires-Dist: requests>=2.32.5
|
|
33
|
+
Requires-Dist: bcc-rates>=1.1.0 ; extra == 'currency'
|
|
34
|
+
Requires-Dist: django-cacheops>=7.2 ; extra == 'oxiliere'
|
|
35
|
+
Requires-Dist: django-tenants>=3.9.0 ; extra == 'oxiliere'
|
|
36
|
+
Requires-Dist: weasyprint>=67.0 ; extra == 'pdf'
|
|
33
37
|
Requires-Python: >=3.12
|
|
34
38
|
Project-URL: Changelog, https://github.com/oxiliere/oxutils/blob/main/CHANGELOG.md
|
|
35
39
|
Project-URL: Documentation, https://github.com/oxiliere/oxutils/tree/main/docs
|
|
36
40
|
Project-URL: Homepage, https://github.com/oxiliere/oxutils
|
|
37
41
|
Project-URL: Issues, https://github.com/oxiliere/oxutils/issues
|
|
38
42
|
Project-URL: Repository, https://github.com/oxiliere/oxutils
|
|
43
|
+
Provides-Extra: currency
|
|
44
|
+
Provides-Extra: oxiliere
|
|
45
|
+
Provides-Extra: pdf
|
|
39
46
|
Description-Content-Type: text/markdown
|
|
40
47
|
|
|
41
48
|
# OxUtils
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "oxutils"
|
|
3
|
-
version = "0.1.
|
|
3
|
+
version = "0.1.6"
|
|
4
4
|
description = "Production-ready utilities for Django applications in the Oxiliere ecosystem"
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
license = "Apache-2.0"
|
|
@@ -57,10 +57,20 @@ members = [
|
|
|
57
57
|
[tool.uv.sources]
|
|
58
58
|
oxutils = { workspace = true }
|
|
59
59
|
|
|
60
|
-
[
|
|
60
|
+
[project.optional-dependencies]
|
|
61
61
|
currency = [
|
|
62
62
|
"bcc-rates>=1.1.0",
|
|
63
63
|
]
|
|
64
|
+
|
|
65
|
+
oxiliere = [
|
|
66
|
+
"django-cacheops>=7.2",
|
|
67
|
+
"django-tenants>=3.9.0",
|
|
68
|
+
]
|
|
69
|
+
pdf = [
|
|
70
|
+
"weasyprint>=67.0",
|
|
71
|
+
]
|
|
72
|
+
|
|
73
|
+
[dependency-groups]
|
|
64
74
|
dev = [
|
|
65
75
|
"pytest>=8.0.0",
|
|
66
76
|
"pytest-django>=4.8.0",
|
|
@@ -70,13 +80,7 @@ dev = [
|
|
|
70
80
|
"pillow>=12.0.0",
|
|
71
81
|
"ruff>=0.8.0",
|
|
72
82
|
]
|
|
73
|
-
|
|
74
|
-
"django-cacheops>=7.2",
|
|
75
|
-
"django-tenants>=3.9.0",
|
|
76
|
-
]
|
|
77
|
-
pdf = [
|
|
78
|
-
"weasyprint>=67.0",
|
|
79
|
-
]
|
|
83
|
+
|
|
80
84
|
|
|
81
85
|
[tool.ruff]
|
|
82
86
|
line-length = 100
|
|
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
|
|
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
|
{oxutils-0.1.5 → oxutils-0.1.6}/src/oxutils/oxiliere/management/commands/init_oxiliere_system.py
RENAMED
|
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
|