magicli 2.0.1__tar.gz → 2.0.2__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.
- {magicli-2.0.1 → magicli-2.0.2}/PKG-INFO +4 -1
- {magicli-2.0.1 → magicli-2.0.2}/magicli.egg-info/PKG-INFO +4 -1
- {magicli-2.0.1 → magicli-2.0.2}/magicli.egg-info/SOURCES.txt +1 -1
- {magicli-2.0.1 → magicli-2.0.2}/pyproject.toml +2 -0
- {magicli-2.0.1 → magicli-2.0.2}/.github/workflows/lint.yml +0 -0
- {magicli-2.0.1 → magicli-2.0.2}/.github/workflows/pytest.yml +0 -0
- {magicli-2.0.1 → magicli-2.0.2}/.github/workflows/release.yml +0 -0
- {magicli-2.0.1 → magicli-2.0.2}/.gitignore +0 -0
- /magicli-2.0.1/.github/license → /magicli-2.0.2/LICENSE +0 -0
- {magicli-2.0.1 → magicli-2.0.2}/README.md +0 -0
- {magicli-2.0.1 → magicli-2.0.2}/magicli.egg-info/dependency_links.txt +0 -0
- {magicli-2.0.1 → magicli-2.0.2}/magicli.egg-info/entry_points.txt +0 -0
- {magicli-2.0.1 → magicli-2.0.2}/magicli.egg-info/requires.txt +0 -0
- {magicli-2.0.1 → magicli-2.0.2}/magicli.egg-info/top_level.txt +0 -0
- {magicli-2.0.1 → magicli-2.0.2}/magicli.py +0 -0
- {magicli-2.0.1 → magicli-2.0.2}/setup.cfg +0 -0
- {magicli-2.0.1 → magicli-2.0.2}/tests/fixtures.py +0 -0
- {magicli-2.0.1 → magicli-2.0.2}/tests/test_cli.py +0 -0
- {magicli-2.0.1 → magicli-2.0.2}/tests/test_help.py +0 -0
- {magicli-2.0.1 → magicli-2.0.2}/tests/test_magicli.py +0 -0
- {magicli-2.0.1 → magicli-2.0.2}/tests/test_parse_kwarg.py +0 -0
- {magicli-2.0.1 → magicli-2.0.2}/tests/test_parse_short_options.py +0 -0
|
@@ -1,12 +1,15 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: magicli
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.2
|
|
4
4
|
Summary: Automatically generates a CLI from functions.
|
|
5
5
|
Author-email: Patrick Elmer <patrick@elmer.ws>
|
|
6
|
+
License-Expression: GPL-3.0-or-later
|
|
6
7
|
Project-URL: Home, https://github.com/PatrickElmer/magicli
|
|
7
8
|
Description-Content-Type: text/markdown
|
|
9
|
+
License-File: LICENSE
|
|
8
10
|
Provides-Extra: dev
|
|
9
11
|
Requires-Dist: pytest; extra == "dev"
|
|
12
|
+
Dynamic: license-file
|
|
10
13
|
|
|
11
14
|
# magiᴄʟɪ✨
|
|
12
15
|
|
|
@@ -1,12 +1,15 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: magicli
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.2
|
|
4
4
|
Summary: Automatically generates a CLI from functions.
|
|
5
5
|
Author-email: Patrick Elmer <patrick@elmer.ws>
|
|
6
|
+
License-Expression: GPL-3.0-or-later
|
|
6
7
|
Project-URL: Home, https://github.com/PatrickElmer/magicli
|
|
7
8
|
Description-Content-Type: text/markdown
|
|
9
|
+
License-File: LICENSE
|
|
8
10
|
Provides-Extra: dev
|
|
9
11
|
Requires-Dist: pytest; extra == "dev"
|
|
12
|
+
Dynamic: license-file
|
|
10
13
|
|
|
11
14
|
# magiᴄʟɪ✨
|
|
12
15
|
|
|
@@ -11,6 +11,8 @@ authors = [{name = "Patrick Elmer", email = "patrick@elmer.ws"}]
|
|
|
11
11
|
readme = "README.md"
|
|
12
12
|
description = "Automatically generates a CLI from functions."
|
|
13
13
|
dynamic = ["version"]
|
|
14
|
+
license = "GPL-3.0-or-later"
|
|
15
|
+
license-files = ["LICENSE"]
|
|
14
16
|
|
|
15
17
|
[project.optional-dependencies]
|
|
16
18
|
dev = ["pytest"]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|