django-plugin-system 2.0.2__tar.gz → 2.0.3__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.
- {django_plugin_system-2.0.2/src/django_plugin_system.egg-info → django_plugin_system-2.0.3}/PKG-INFO +2 -1
- {django_plugin_system-2.0.2 → django_plugin_system-2.0.3}/pyproject.toml +2 -2
- {django_plugin_system-2.0.2 → django_plugin_system-2.0.3/src/django_plugin_system.egg-info}/PKG-INFO +2 -1
- {django_plugin_system-2.0.2 → django_plugin_system-2.0.3}/src/django_plugin_system.egg-info/requires.txt +1 -0
- {django_plugin_system-2.0.2 → django_plugin_system-2.0.3}/LICENSE +0 -0
- {django_plugin_system-2.0.2 → django_plugin_system-2.0.3}/README.md +0 -0
- {django_plugin_system-2.0.2 → django_plugin_system-2.0.3}/setup.cfg +0 -0
- {django_plugin_system-2.0.2 → django_plugin_system-2.0.3}/src/django_plugin_system/__init__.py +0 -0
- {django_plugin_system-2.0.2 → django_plugin_system-2.0.3}/src/django_plugin_system/admin.py +0 -0
- {django_plugin_system-2.0.2 → django_plugin_system-2.0.3}/src/django_plugin_system/apps.py +0 -0
- {django_plugin_system-2.0.2 → django_plugin_system-2.0.3}/src/django_plugin_system/forms.py +0 -0
- {django_plugin_system-2.0.2 → django_plugin_system-2.0.3}/src/django_plugin_system/helpers.py +0 -0
- {django_plugin_system-2.0.2 → django_plugin_system-2.0.3}/src/django_plugin_system/management/__init__.py +0 -0
- {django_plugin_system-2.0.2 → django_plugin_system-2.0.3}/src/django_plugin_system/management/commands/__init__.py +0 -0
- {django_plugin_system-2.0.2 → django_plugin_system-2.0.3}/src/django_plugin_system/management/commands/pluginsync.py +0 -0
- {django_plugin_system-2.0.2 → django_plugin_system-2.0.3}/src/django_plugin_system/migrations/0001_initial.py +0 -0
- {django_plugin_system-2.0.2 → django_plugin_system-2.0.3}/src/django_plugin_system/migrations/__init__.py +0 -0
- {django_plugin_system-2.0.2 → django_plugin_system-2.0.3}/src/django_plugin_system/models.py +0 -0
- {django_plugin_system-2.0.2 → django_plugin_system-2.0.3}/src/django_plugin_system/plugin_core.py +0 -0
- {django_plugin_system-2.0.2 → django_plugin_system-2.0.3}/src/django_plugin_system/register.py +0 -0
- {django_plugin_system-2.0.2 → django_plugin_system-2.0.3}/src/django_plugin_system/services/__init__.py +0 -0
- {django_plugin_system-2.0.2 → django_plugin_system-2.0.3}/src/django_plugin_system/services/sync.py +0 -0
- {django_plugin_system-2.0.2 → django_plugin_system-2.0.3}/src/django_plugin_system/signals.py +0 -0
- {django_plugin_system-2.0.2 → django_plugin_system-2.0.3}/src/django_plugin_system/storage.py +0 -0
- {django_plugin_system-2.0.2 → django_plugin_system-2.0.3}/src/django_plugin_system/templates/admin/django_plugin_system/plugininstance/configure.html +0 -0
- {django_plugin_system-2.0.2 → django_plugin_system-2.0.3}/src/django_plugin_system/templates/admin/django_plugin_system/plugininstance/select_item.html +0 -0
- {django_plugin_system-2.0.2 → django_plugin_system-2.0.3}/src/django_plugin_system.egg-info/SOURCES.txt +0 -0
- {django_plugin_system-2.0.2 → django_plugin_system-2.0.3}/src/django_plugin_system.egg-info/dependency_links.txt +0 -0
- {django_plugin_system-2.0.2 → django_plugin_system-2.0.3}/src/django_plugin_system.egg-info/top_level.txt +0 -0
- {django_plugin_system-2.0.2 → django_plugin_system-2.0.3}/tests/test_plugin_core.py +0 -0
- {django_plugin_system-2.0.2 → django_plugin_system-2.0.3}/tests/test_register_and_sync.py +0 -0
{django_plugin_system-2.0.2/src/django_plugin_system.egg-info → django_plugin_system-2.0.3}/PKG-INFO
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: django-plugin-system
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.3
|
|
4
4
|
Summary: A flexible plugin framework for Django with admin-managed plugin instances and registry-to-database sync.
|
|
5
5
|
Author-email: Alireza Tabatabaeian <alireza.tabatabaeian@gmail.com>
|
|
6
6
|
Project-URL: Homepage, https://github.com/Alireza-Tabatabaeian/django-plugin-system
|
|
@@ -29,6 +29,7 @@ Requires-Python: >=3.10
|
|
|
29
29
|
Description-Content-Type: text/markdown
|
|
30
30
|
License-File: LICENSE
|
|
31
31
|
Requires-Dist: Django<6.1,>=4.2
|
|
32
|
+
Requires-Dist: django-fernet-encrypted-fields>=0.4.0
|
|
32
33
|
Provides-Extra: dev
|
|
33
34
|
Requires-Dist: pytest>=8; extra == "dev"
|
|
34
35
|
Requires-Dist: pytest-django>=4.8.0; extra == "dev"
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "django-plugin-system"
|
|
7
|
-
version = "2.0.
|
|
7
|
+
version = "2.0.3"
|
|
8
8
|
description = "A flexible plugin framework for Django with admin-managed plugin instances and registry-to-database sync."
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.10"
|
|
@@ -37,7 +37,7 @@ classifiers = [
|
|
|
37
37
|
|
|
38
38
|
dependencies = [
|
|
39
39
|
"Django>=4.2,<6.1",
|
|
40
|
-
|
|
40
|
+
"django-fernet-encrypted-fields>=0.4.0"
|
|
41
41
|
]
|
|
42
42
|
|
|
43
43
|
[project.urls]
|
{django_plugin_system-2.0.2 → django_plugin_system-2.0.3/src/django_plugin_system.egg-info}/PKG-INFO
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: django-plugin-system
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.3
|
|
4
4
|
Summary: A flexible plugin framework for Django with admin-managed plugin instances and registry-to-database sync.
|
|
5
5
|
Author-email: Alireza Tabatabaeian <alireza.tabatabaeian@gmail.com>
|
|
6
6
|
Project-URL: Homepage, https://github.com/Alireza-Tabatabaeian/django-plugin-system
|
|
@@ -29,6 +29,7 @@ Requires-Python: >=3.10
|
|
|
29
29
|
Description-Content-Type: text/markdown
|
|
30
30
|
License-File: LICENSE
|
|
31
31
|
Requires-Dist: Django<6.1,>=4.2
|
|
32
|
+
Requires-Dist: django-fernet-encrypted-fields>=0.4.0
|
|
32
33
|
Provides-Extra: dev
|
|
33
34
|
Requires-Dist: pytest>=8; extra == "dev"
|
|
34
35
|
Requires-Dist: pytest-django>=4.8.0; extra == "dev"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{django_plugin_system-2.0.2 → django_plugin_system-2.0.3}/src/django_plugin_system/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{django_plugin_system-2.0.2 → django_plugin_system-2.0.3}/src/django_plugin_system/helpers.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{django_plugin_system-2.0.2 → django_plugin_system-2.0.3}/src/django_plugin_system/models.py
RENAMED
|
File without changes
|
{django_plugin_system-2.0.2 → django_plugin_system-2.0.3}/src/django_plugin_system/plugin_core.py
RENAMED
|
File without changes
|
{django_plugin_system-2.0.2 → django_plugin_system-2.0.3}/src/django_plugin_system/register.py
RENAMED
|
File without changes
|
|
File without changes
|
{django_plugin_system-2.0.2 → django_plugin_system-2.0.3}/src/django_plugin_system/services/sync.py
RENAMED
|
File without changes
|
{django_plugin_system-2.0.2 → django_plugin_system-2.0.3}/src/django_plugin_system/signals.py
RENAMED
|
File without changes
|
{django_plugin_system-2.0.2 → django_plugin_system-2.0.3}/src/django_plugin_system/storage.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
|