whatdidyoudo 0.1.3__tar.gz → 0.1.5__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.
- {whatdidyoudo-0.1.3 → whatdidyoudo-0.1.5}/PKG-INFO +2 -1
- {whatdidyoudo-0.1.3 → whatdidyoudo-0.1.5}/pyproject.toml +3 -2
- {whatdidyoudo-0.1.3 → whatdidyoudo-0.1.5}/.gitignore +0 -0
- {whatdidyoudo-0.1.3 → whatdidyoudo-0.1.5}/README.md +0 -0
- {whatdidyoudo-0.1.3 → whatdidyoudo-0.1.5}/whatdidyoudo/__init__.py +0 -0
- {whatdidyoudo-0.1.3 → whatdidyoudo-0.1.5}/whatdidyoudo/app.py +0 -0
- {whatdidyoudo-0.1.3 → whatdidyoudo-0.1.5}/whatdidyoudo/static/style.css +0 -0
- {whatdidyoudo-0.1.3 → whatdidyoudo-0.1.5}/whatdidyoudo/templates/form.html +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: whatdidyoudo
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.5
|
|
4
4
|
Summary: A minimal Flask app that shows the amount of OpenStreetMap changes made by a user on a day.
|
|
5
5
|
Project-URL: Homepage, https://github.com/rompe/whatdidyoudo
|
|
6
6
|
Project-URL: Issues, https://github.com/rompe/whatdidyoudo/issues
|
|
@@ -8,6 +8,7 @@ Author-email: Ulf Rompe <whatdidyoudo.rompe.org@rompe.org>
|
|
|
8
8
|
License: MIT
|
|
9
9
|
Requires-Python: >=3.11
|
|
10
10
|
Requires-Dist: flask-caching==2.3.1
|
|
11
|
+
Requires-Dist: flask-limiter>=4.0.0
|
|
11
12
|
Requires-Dist: flask>=3.0.3
|
|
12
13
|
Requires-Dist: requests>=2.32.4
|
|
13
14
|
Provides-Extra: dev
|
|
@@ -7,7 +7,7 @@ packages = ["whatdidyoudo"]
|
|
|
7
7
|
|
|
8
8
|
[project]
|
|
9
9
|
name = "whatdidyoudo"
|
|
10
|
-
version = "0.1.
|
|
10
|
+
version = "0.1.5"
|
|
11
11
|
description = "A minimal Flask app that shows the amount of OpenStreetMap changes made by a user on a day."
|
|
12
12
|
authors = [
|
|
13
13
|
{ name = "Ulf Rompe", email = "whatdidyoudo.rompe.org@rompe.org" }
|
|
@@ -18,6 +18,7 @@ requires-python = ">=3.11"
|
|
|
18
18
|
dependencies = [
|
|
19
19
|
"Flask>=3.0.3",
|
|
20
20
|
"flask-caching==2.3.1",
|
|
21
|
+
"flask-limiter>=4.0.0",
|
|
21
22
|
"requests>=2.32.4",
|
|
22
23
|
]
|
|
23
24
|
|
|
@@ -34,7 +35,7 @@ Homepage = "https://github.com/rompe/whatdidyoudo"
|
|
|
34
35
|
Issues = "https://github.com/rompe/whatdidyoudo/issues"
|
|
35
36
|
|
|
36
37
|
[project.scripts]
|
|
37
|
-
whatdidyoudo = "whatdidyoudo:main"
|
|
38
|
+
whatdidyoudo = "whatdidyoudo.app:main"
|
|
38
39
|
|
|
39
40
|
|
|
40
41
|
[tool.uv]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|