optfunc2 0.2.2__tar.gz → 0.2.3__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.
- {optfunc2-0.2.2 → optfunc2-0.2.3}/PKG-INFO +3 -4
- {optfunc2-0.2.2 → optfunc2-0.2.3}/pyproject.toml +3 -4
- {optfunc2-0.2.2 → optfunc2-0.2.3}/LICENSE.txt +0 -0
- {optfunc2-0.2.2 → optfunc2-0.2.3}/README.md +0 -0
- {optfunc2-0.2.2 → optfunc2-0.2.3}/src/optfunc2/__init__.py +0 -0
- {optfunc2-0.2.2 → optfunc2-0.2.3}/src/optfunc2/parser.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: optfunc2
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.3
|
|
4
4
|
Summary: Generate command line options and help/tips from function automatically.
|
|
5
5
|
License: PyPA
|
|
6
6
|
Author: bajeer
|
|
@@ -16,9 +16,8 @@ Classifier: Programming Language :: Python :: 3.12
|
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.13
|
|
17
17
|
Requires-Dist: docstring-parser (>=0.16,<0.17)
|
|
18
18
|
Requires-Dist: prettytable (==3.11.0)
|
|
19
|
-
Project-URL: Bug
|
|
20
|
-
Project-URL: Homepage, https://
|
|
21
|
-
Project-URL: Source, https://gitee.com/z-bajer/autocall
|
|
19
|
+
Project-URL: Bug Tracker, https://github.com/yjloong/optfunc2/issues
|
|
20
|
+
Project-URL: Homepage, https://github.com/yjloong/optfunc2
|
|
22
21
|
Description-Content-Type: text/markdown
|
|
23
22
|
|
|
24
23
|
# Call function directly in cmd line
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "optfunc2"
|
|
3
|
-
version = "0.2.
|
|
3
|
+
version = "0.2.3"
|
|
4
4
|
description = "Generate command line options and help/tips from function automatically."
|
|
5
5
|
authors = [
|
|
6
6
|
{name = "bajeer",email = "z-bajeer@yeah.net"}
|
|
@@ -19,9 +19,8 @@ requires = ["poetry-core>=2.0.0,<3.0.0"]
|
|
|
19
19
|
build-backend = "poetry.core.masonry.api"
|
|
20
20
|
|
|
21
21
|
[project.urls]
|
|
22
|
-
"Homepage" = "https://
|
|
23
|
-
"Bug
|
|
24
|
-
"Source" = "https://gitee.com/z-bajer/autocall"
|
|
22
|
+
"Homepage" = "https://github.com/yjloong/optfunc2"
|
|
23
|
+
"Bug Tracker" = "https://github.com/yjloong/optfunc2/issues"
|
|
25
24
|
|
|
26
25
|
[tool.poetry.group.dev.dependencies]
|
|
27
26
|
pytest = "^8.3.4"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|