prune_captcha 1.13.0__tar.gz → 1.15.0__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.
- prune_captcha-1.15.0/MANIFEST.in +2 -0
- {prune_captcha-1.13.0 → prune_captcha-1.15.0}/PKG-INFO +3 -1
- {prune_captcha-1.13.0 → prune_captcha-1.15.0}/README.md +2 -0
- {prune_captcha-1.13.0 → prune_captcha-1.15.0}/prune_captcha.egg-info/PKG-INFO +3 -1
- {prune_captcha-1.13.0 → prune_captcha-1.15.0}/prune_captcha.egg-info/SOURCES.txt +1 -0
- {prune_captcha-1.13.0 → prune_captcha-1.15.0}/pyproject.toml +4 -1
- {prune_captcha-1.13.0 → prune_captcha-1.15.0}/captcha_prune/__init__.py +0 -0
- {prune_captcha-1.13.0 → prune_captcha-1.15.0}/captcha_prune/apps.py +0 -0
- {prune_captcha-1.13.0 → prune_captcha-1.15.0}/captcha_prune/utils.py +0 -0
- {prune_captcha-1.13.0 → prune_captcha-1.15.0}/prune_captcha.egg-info/dependency_links.txt +0 -0
- {prune_captcha-1.13.0 → prune_captcha-1.15.0}/prune_captcha.egg-info/requires.txt +0 -0
- {prune_captcha-1.13.0 → prune_captcha-1.15.0}/prune_captcha.egg-info/top_level.txt +0 -0
- {prune_captcha-1.13.0 → prune_captcha-1.15.0}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: prune_captcha
|
3
|
-
Version: 1.
|
3
|
+
Version: 1.15.0
|
4
4
|
Summary: A tool to protect formulaire from spam.
|
5
5
|
Author-email: Arnout <bastien@prune.sh>
|
6
6
|
Project-URL: Made_by, https://prune.sh/
|
@@ -116,6 +116,8 @@ Important: You must import the static files (css, js) present in "captcha_prune/
|
|
116
116
|
|
117
117
|
| Version | Date | Notes |
|
118
118
|
| ------- | ---------- | ---------------------------------- |
|
119
|
+
| 1.15.0 | 2025-05-21 | fix manifest |
|
120
|
+
| 1.14.0 | 2025-05-21 | fix static and templates dirs |
|
119
121
|
| 1.13.0 | 2025-05-21 | use session, add static |
|
120
122
|
| 1.12.2 | 2025-05-21 | doc fixed |
|
121
123
|
| 1.12.1 | 2025-05-21 | doc fixed |
|
@@ -98,6 +98,8 @@ Important: You must import the static files (css, js) present in "captcha_prune/
|
|
98
98
|
|
99
99
|
| Version | Date | Notes |
|
100
100
|
| ------- | ---------- | ---------------------------------- |
|
101
|
+
| 1.15.0 | 2025-05-21 | fix manifest |
|
102
|
+
| 1.14.0 | 2025-05-21 | fix static and templates dirs |
|
101
103
|
| 1.13.0 | 2025-05-21 | use session, add static |
|
102
104
|
| 1.12.2 | 2025-05-21 | doc fixed |
|
103
105
|
| 1.12.1 | 2025-05-21 | doc fixed |
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: prune_captcha
|
3
|
-
Version: 1.
|
3
|
+
Version: 1.15.0
|
4
4
|
Summary: A tool to protect formulaire from spam.
|
5
5
|
Author-email: Arnout <bastien@prune.sh>
|
6
6
|
Project-URL: Made_by, https://prune.sh/
|
@@ -116,6 +116,8 @@ Important: You must import the static files (css, js) present in "captcha_prune/
|
|
116
116
|
|
117
117
|
| Version | Date | Notes |
|
118
118
|
| ------- | ---------- | ---------------------------------- |
|
119
|
+
| 1.15.0 | 2025-05-21 | fix manifest |
|
120
|
+
| 1.14.0 | 2025-05-21 | fix static and templates dirs |
|
119
121
|
| 1.13.0 | 2025-05-21 | use session, add static |
|
120
122
|
| 1.12.2 | 2025-05-21 | doc fixed |
|
121
123
|
| 1.12.1 | 2025-05-21 | doc fixed |
|
@@ -2,6 +2,9 @@
|
|
2
2
|
requires = ["setuptools"]
|
3
3
|
build-backend = "setuptools.build_meta"
|
4
4
|
|
5
|
+
[tool.setuptools]
|
6
|
+
include-package-data = true
|
7
|
+
|
5
8
|
[tool.setuptools.packages.find]
|
6
9
|
where = ["."]
|
7
10
|
|
@@ -20,7 +23,7 @@ classifiers = [
|
|
20
23
|
keywords = ["captcha", "django", "code-quality"]
|
21
24
|
urls = {Made_by = "https://prune.sh/"}
|
22
25
|
name = "prune_captcha"
|
23
|
-
version = "1.
|
26
|
+
version = "1.15.0"
|
24
27
|
description = "A tool to protect formulaire from spam."
|
25
28
|
readme = "README.md"
|
26
29
|
dependencies = [
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|