dhis2w-cli 1.2.0__tar.gz → 1.3.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.
- {dhis2w_cli-1.2.0 → dhis2w_cli-1.3.0}/PKG-INFO +3 -3
- {dhis2w_cli-1.2.0 → dhis2w_cli-1.3.0}/pyproject.toml +3 -3
- {dhis2w_cli-1.2.0 → dhis2w_cli-1.3.0}/LICENSE +0 -0
- {dhis2w_cli-1.2.0 → dhis2w_cli-1.3.0}/README.md +0 -0
- {dhis2w_cli-1.2.0 → dhis2w_cli-1.3.0}/src/dhis2w_cli/__init__.py +0 -0
- {dhis2w_cli-1.2.0 → dhis2w_cli-1.3.0}/src/dhis2w_cli/main.py +0 -0
- {dhis2w_cli-1.2.0 → dhis2w_cli-1.3.0}/src/dhis2w_cli/py.typed +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: dhis2w-cli
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.3.0
|
|
4
4
|
Summary: d2w command-line interface (Typer) — mounts plugins from dhis2w-core.
|
|
5
5
|
Author: Morten Hansen
|
|
6
6
|
Author-email: Morten Hansen <morten@winterop.com>
|
|
@@ -11,10 +11,10 @@ Classifier: Intended Audience :: Developers
|
|
|
11
11
|
Classifier: Programming Language :: Python :: 3
|
|
12
12
|
Classifier: Programming Language :: Python :: 3.13
|
|
13
13
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
14
|
-
Requires-Dist: dhis2w-core>=1.
|
|
14
|
+
Requires-Dist: dhis2w-core>=1.3.0,<2.0
|
|
15
15
|
Requires-Dist: typer>=0.26
|
|
16
16
|
Requires-Dist: rich>=15
|
|
17
|
-
Requires-Dist: dhis2w-browser>=1.
|
|
17
|
+
Requires-Dist: dhis2w-browser>=1.3.0,<2.0 ; extra == 'browser'
|
|
18
18
|
Requires-Dist: textual>=8.2.8 ; extra == 'tui'
|
|
19
19
|
Requires-Python: >=3.13
|
|
20
20
|
Project-URL: Homepage, https://github.com/winterop-com/dhis2w-utils
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "dhis2w-cli"
|
|
3
|
-
version = "1.
|
|
3
|
+
version = "1.3.0"
|
|
4
4
|
description = "d2w command-line interface (Typer) — mounts plugins from dhis2w-core."
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
authors = [{ name = "Morten Hansen", email = "morten@winterop.com" }]
|
|
@@ -15,13 +15,13 @@ classifiers = [
|
|
|
15
15
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
16
16
|
]
|
|
17
17
|
dependencies = [
|
|
18
|
-
"dhis2w-core>=1.
|
|
18
|
+
"dhis2w-core>=1.3.0,<2.0",
|
|
19
19
|
"typer>=0.26",
|
|
20
20
|
"rich>=15",
|
|
21
21
|
]
|
|
22
22
|
|
|
23
23
|
[project.optional-dependencies]
|
|
24
|
-
browser = ["dhis2w-browser>=1.
|
|
24
|
+
browser = ["dhis2w-browser>=1.3.0,<2.0"]
|
|
25
25
|
tui = [
|
|
26
26
|
"textual>=8.2.8",
|
|
27
27
|
]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|