the-datagarden 1.2.5__tar.gz → 1.2.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.
Files changed (32) hide show
  1. {the_datagarden-1.2.5 → the_datagarden-1.2.6}/PKG-INFO +9 -2
  2. {the_datagarden-1.2.5 → the_datagarden-1.2.6}/pyproject.toml +2 -2
  3. {the_datagarden-1.2.5 → the_datagarden-1.2.6}/src/the_datagarden.egg-info/PKG-INFO +9 -2
  4. {the_datagarden-1.2.5 → the_datagarden-1.2.6}/src/the_datagarden.egg-info/requires.txt +8 -0
  5. {the_datagarden-1.2.5 → the_datagarden-1.2.6}/README.rst +0 -0
  6. {the_datagarden-1.2.5 → the_datagarden-1.2.6}/setup.cfg +0 -0
  7. {the_datagarden-1.2.5 → the_datagarden-1.2.6}/src/the_datagarden/__init__.py +0 -0
  8. {the_datagarden-1.2.5 → the_datagarden-1.2.6}/src/the_datagarden/abc/__init__.py +0 -0
  9. {the_datagarden-1.2.5 → the_datagarden-1.2.6}/src/the_datagarden/abc/api.py +0 -0
  10. {the_datagarden-1.2.5 → the_datagarden-1.2.6}/src/the_datagarden/abc/authentication.py +0 -0
  11. {the_datagarden-1.2.5 → the_datagarden-1.2.6}/src/the_datagarden/api/__init__.py +0 -0
  12. {the_datagarden-1.2.5 → the_datagarden-1.2.6}/src/the_datagarden/api/authentication/__init__.py +0 -0
  13. {the_datagarden-1.2.5 → the_datagarden-1.2.6}/src/the_datagarden/api/authentication/credentials/__init__.py +0 -0
  14. {the_datagarden-1.2.5 → the_datagarden-1.2.6}/src/the_datagarden/api/authentication/environment/__init__.py +0 -0
  15. {the_datagarden-1.2.5 → the_datagarden-1.2.6}/src/the_datagarden/api/authentication/settings.py +0 -0
  16. {the_datagarden-1.2.5 → the_datagarden-1.2.6}/src/the_datagarden/api/base/__init__.py +0 -0
  17. {the_datagarden-1.2.5 → the_datagarden-1.2.6}/src/the_datagarden/api/regions/__init__.py +0 -0
  18. {the_datagarden-1.2.5 → the_datagarden-1.2.6}/src/the_datagarden/api/regions/base/__init__.py +0 -0
  19. {the_datagarden-1.2.5 → the_datagarden-1.2.6}/src/the_datagarden/api/regions/base/settings.py +0 -0
  20. {the_datagarden-1.2.5 → the_datagarden-1.2.6}/src/the_datagarden/api/regions/continent.py +0 -0
  21. {the_datagarden-1.2.5 → the_datagarden-1.2.6}/src/the_datagarden/api/regions/country.py +0 -0
  22. {the_datagarden-1.2.5 → the_datagarden-1.2.6}/src/the_datagarden/cli.py +0 -0
  23. {the_datagarden-1.2.5 → the_datagarden-1.2.6}/src/the_datagarden/models/__init__.py +0 -0
  24. {the_datagarden-1.2.5 → the_datagarden-1.2.6}/src/the_datagarden/models/geojson.py +0 -0
  25. {the_datagarden-1.2.5 → the_datagarden-1.2.6}/src/the_datagarden/models/regional_data.py +0 -0
  26. {the_datagarden-1.2.5 → the_datagarden-1.2.6}/src/the_datagarden/version.py +0 -0
  27. {the_datagarden-1.2.5 → the_datagarden-1.2.6}/src/the_datagarden.egg-info/SOURCES.txt +0 -0
  28. {the_datagarden-1.2.5 → the_datagarden-1.2.6}/src/the_datagarden.egg-info/dependency_links.txt +0 -0
  29. {the_datagarden-1.2.5 → the_datagarden-1.2.6}/src/the_datagarden.egg-info/entry_points.txt +0 -0
  30. {the_datagarden-1.2.5 → the_datagarden-1.2.6}/src/the_datagarden.egg-info/top_level.txt +0 -0
  31. {the_datagarden-1.2.5 → the_datagarden-1.2.6}/tests/test_cli.py +0 -0
  32. {the_datagarden-1.2.5 → the_datagarden-1.2.6}/tests/test_the_datagarden_imports.py +0 -0
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.2
1
+ Metadata-Version: 2.4
2
2
  Name: the-datagarden
3
- Version: 1.2.5
3
+ Version: 1.2.6
4
4
  Summary: Public data made easy.
5
5
  Author-email: Maarten de Ruyter <info@the-datagarden.io>
6
6
  License: MIT
@@ -36,6 +36,13 @@ Requires-Dist: pyjwt>=2.10.0
36
36
  Requires-Dist: python-decouple>=3.8
37
37
  Requires-Dist: requests>=2.32.3
38
38
  Requires-Dist: the-datagarden-models>=1.6.3
39
+ Provides-Extra: dev
40
+ Requires-Dist: mypy>=1.13.0; extra == "dev"
41
+ Requires-Dist: pre-commit>=4.0.1; extra == "dev"
42
+ Requires-Dist: pytest>=8.3.3; extra == "dev"
43
+ Requires-Dist: ruff>=0.7.4; extra == "dev"
44
+ Requires-Dist: sphinx>=8.1.3; extra == "dev"
45
+ Requires-Dist: types-requests>=2.32.0.20241016; extra == "dev"
39
46
 
40
47
  ==================
41
48
  the-datagarden SDK
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "the-datagarden"
3
- version = "1.2.5"
3
+ version = "1.2.6"
4
4
  description = "Public data made easy."
5
5
  readme = "README.rst"
6
6
  requires-python = ">=3.10"
@@ -40,7 +40,7 @@ classifiers = [
40
40
 
41
41
  ]
42
42
 
43
- [dependency-groups]
43
+ [project.optional-dependencies]
44
44
  dev = [
45
45
  "mypy>=1.13.0",
46
46
  "pre-commit>=4.0.1",
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.2
1
+ Metadata-Version: 2.4
2
2
  Name: the-datagarden
3
- Version: 1.2.5
3
+ Version: 1.2.6
4
4
  Summary: Public data made easy.
5
5
  Author-email: Maarten de Ruyter <info@the-datagarden.io>
6
6
  License: MIT
@@ -36,6 +36,13 @@ Requires-Dist: pyjwt>=2.10.0
36
36
  Requires-Dist: python-decouple>=3.8
37
37
  Requires-Dist: requests>=2.32.3
38
38
  Requires-Dist: the-datagarden-models>=1.6.3
39
+ Provides-Extra: dev
40
+ Requires-Dist: mypy>=1.13.0; extra == "dev"
41
+ Requires-Dist: pre-commit>=4.0.1; extra == "dev"
42
+ Requires-Dist: pytest>=8.3.3; extra == "dev"
43
+ Requires-Dist: ruff>=0.7.4; extra == "dev"
44
+ Requires-Dist: sphinx>=8.1.3; extra == "dev"
45
+ Requires-Dist: types-requests>=2.32.0.20241016; extra == "dev"
39
46
 
40
47
  ==================
41
48
  the-datagarden SDK
@@ -6,3 +6,11 @@ pyjwt>=2.10.0
6
6
  python-decouple>=3.8
7
7
  requests>=2.32.3
8
8
  the-datagarden-models>=1.6.3
9
+
10
+ [dev]
11
+ mypy>=1.13.0
12
+ pre-commit>=4.0.1
13
+ pytest>=8.3.3
14
+ ruff>=0.7.4
15
+ sphinx>=8.1.3
16
+ types-requests>=2.32.0.20241016
File without changes