django-devapp 0.3.4__tar.gz → 0.4.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_devapp-0.3.4 → django_devapp-0.4.3}/PKG-INFO +4 -5
- {django_devapp-0.3.4 → django_devapp-0.4.3}/pyproject.toml +4 -4
- {django_devapp-0.3.4 → django_devapp-0.4.3}/LICENSE +0 -0
- {django_devapp-0.3.4 → django_devapp-0.4.3}/README.md +0 -0
- {django_devapp-0.3.4 → django_devapp-0.4.3}/src/dev/__init__.py +0 -0
- {django_devapp-0.3.4 → django_devapp-0.4.3}/src/dev/boot.py +0 -0
|
@@ -1,28 +1,27 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: django-devapp
|
|
3
|
-
Version: 0.3
|
|
3
|
+
Version: 0.4.3
|
|
4
4
|
Summary: Basic tools to manage a django application outside of a Django project
|
|
5
5
|
License: BSD-3-Clause License
|
|
6
6
|
License-File: LICENSE
|
|
7
7
|
Author: George Tantiras
|
|
8
|
-
Requires-Python: >=3.
|
|
8
|
+
Requires-Python: >=3.11
|
|
9
9
|
Classifier: Development Status :: 3 - Alpha
|
|
10
10
|
Classifier: Environment :: Web Environment
|
|
11
11
|
Classifier: Framework :: Django
|
|
12
12
|
Classifier: Intended Audience :: Developers
|
|
13
13
|
Classifier: License :: Other/Proprietary License
|
|
14
14
|
Classifier: Programming Language :: Python :: 3
|
|
15
|
-
Classifier: Programming Language :: Python :: 3.10
|
|
16
15
|
Classifier: Programming Language :: Python :: 3.11
|
|
17
16
|
Classifier: Programming Language :: Python :: 3.12
|
|
18
17
|
Classifier: Programming Language :: Python :: 3.13
|
|
19
18
|
Classifier: Programming Language :: Python :: 3.14
|
|
20
19
|
Classifier: Topic :: Internet :: WWW/HTTP
|
|
21
|
-
Requires-Dist: black (>=
|
|
20
|
+
Requires-Dist: black (>=26.0.0,<27.0.0)
|
|
22
21
|
Requires-Dist: build (>=1.2.2.post1,<2.0.0)
|
|
23
22
|
Requires-Dist: click (>=8.1.8,<9.0.0)
|
|
24
23
|
Requires-Dist: django (>=5.1.6,<6.0.0)
|
|
25
|
-
Requires-Dist: ipython (>=
|
|
24
|
+
Requires-Dist: ipython (>=9.0.0,<10.0.0)
|
|
26
25
|
Requires-Dist: twine (>=6.1.0,<7.0.0)
|
|
27
26
|
Description-Content-Type: text/markdown
|
|
28
27
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "django-devapp"
|
|
3
|
-
version = "0.3
|
|
3
|
+
version = "0.4.3"
|
|
4
4
|
description = "Basic tools to manage a django application outside of a Django project"
|
|
5
5
|
authors = [
|
|
6
6
|
{name = "George Tantiras"}
|
|
@@ -8,12 +8,12 @@ authors = [
|
|
|
8
8
|
license = {text = "BSD-3-Clause License"}
|
|
9
9
|
dynamic = [ "classifiers" ]
|
|
10
10
|
readme = "README.md"
|
|
11
|
-
requires-python = ">=3.
|
|
11
|
+
requires-python = ">=3.11"
|
|
12
12
|
dependencies = [
|
|
13
13
|
"django (>=5.1.6,<6.0.0)",
|
|
14
|
-
"black (>=
|
|
14
|
+
"black (>=26.0.0,<27.0.0)",
|
|
15
15
|
"click (>=8.1.8,<9.0.0)",
|
|
16
|
-
"ipython (>=
|
|
16
|
+
"ipython (>=9.0.0,<10.0.0)",
|
|
17
17
|
"build (>=1.2.2.post1,<2.0.0)",
|
|
18
18
|
"twine (>=6.1.0,<7.0.0)"
|
|
19
19
|
]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|