xkits-command 0.1__tar.gz → 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.
- {xkits_command-0.1 → xkits_command-0.2}/PKG-INFO +3 -2
- {xkits_command-0.1 → xkits_command-0.2}/setup.cfg +1 -1
- {xkits_command-0.1 → xkits_command-0.2}/xkits_command/actuator.py +1 -1
- {xkits_command-0.1 → xkits_command-0.2}/xkits_command/attribute.py +1 -1
- {xkits_command-0.1 → xkits_command-0.2}/xkits_command/parser.py +3 -3
- {xkits_command-0.1 → xkits_command-0.2}/xkits_command.egg-info/PKG-INFO +3 -2
- xkits_command-0.2/xkits_command.egg-info/requires.txt +2 -0
- xkits_command-0.1/xkits_command.egg-info/requires.txt +0 -1
- {xkits_command-0.1 → xkits_command-0.2}/LICENSE +0 -0
- {xkits_command-0.1 → xkits_command-0.2}/README.md +0 -0
- {xkits_command-0.1 → xkits_command-0.2}/setup.py +0 -0
- {xkits_command-0.1 → xkits_command-0.2}/xkits_command/__init__.py +0 -0
- {xkits_command-0.1 → xkits_command-0.2}/xkits_command.egg-info/SOURCES.txt +0 -0
- {xkits_command-0.1 → xkits_command-0.2}/xkits_command.egg-info/dependency_links.txt +0 -0
- {xkits_command-0.1 → xkits_command-0.2}/xkits_command.egg-info/top_level.txt +0 -0
- {xkits_command-0.1 → xkits_command-0.2}/xkits_command.egg-info/zip-safe +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: xkits-command
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.2
|
|
4
4
|
Summary: Command line module
|
|
5
5
|
Home-page: https://github.com/bondbox/xcommand/
|
|
6
6
|
Author: Mingzhe Zou
|
|
@@ -9,13 +9,14 @@ License: GPLv2
|
|
|
9
9
|
Project-URL: Source Code, https://github.com/bondbox/xcommand/
|
|
10
10
|
Project-URL: Bug Tracker, https://github.com/bondbox/xcommand/issues
|
|
11
11
|
Project-URL: Documentation, https://github.com/bondbox/xcommand/
|
|
12
|
-
Keywords: command-line,argparse,shell,bash,terminal
|
|
12
|
+
Keywords: command-line,argparse,argcomplete,shell,bash,terminal
|
|
13
13
|
Platform: any
|
|
14
14
|
Classifier: Programming Language :: Python
|
|
15
15
|
Classifier: Programming Language :: Python :: 3
|
|
16
16
|
Requires-Python: >=3.8
|
|
17
17
|
Description-Content-Type: text/markdown
|
|
18
18
|
License-File: LICENSE
|
|
19
|
+
Requires-Dist: argcomplete>=3.2.1
|
|
19
20
|
Requires-Dist: xkits_logger>=0.1
|
|
20
21
|
|
|
21
22
|
# xcommand
|
|
@@ -17,9 +17,9 @@ from typing import Optional
|
|
|
17
17
|
from typing import Sequence
|
|
18
18
|
from typing import Tuple
|
|
19
19
|
|
|
20
|
-
from xkits_logger.attribute import __project__
|
|
21
20
|
from xkits_logger.logger import Logger as Log
|
|
22
21
|
|
|
22
|
+
from xkits_command.attribute import __project__
|
|
23
23
|
from xkits_command.parser import ArgParser
|
|
24
24
|
|
|
25
25
|
|
|
@@ -12,14 +12,14 @@ from typing import Sequence
|
|
|
12
12
|
from typing import Set
|
|
13
13
|
from typing import Tuple
|
|
14
14
|
|
|
15
|
-
from xkits_logger.attribute import __project__
|
|
16
|
-
from xkits_logger.attribute import __urlhome__
|
|
17
|
-
|
|
18
15
|
try:
|
|
19
16
|
from argcomplete import autocomplete
|
|
20
17
|
except ModuleNotFoundError: # pragma: no cover
|
|
21
18
|
pass # pragma: no cover
|
|
22
19
|
|
|
20
|
+
from xkits_command.attribute import __project__
|
|
21
|
+
from xkits_command.attribute import __urlhome__
|
|
22
|
+
|
|
23
23
|
|
|
24
24
|
class Checker():
|
|
25
25
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: xkits-command
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.2
|
|
4
4
|
Summary: Command line module
|
|
5
5
|
Home-page: https://github.com/bondbox/xcommand/
|
|
6
6
|
Author: Mingzhe Zou
|
|
@@ -9,13 +9,14 @@ License: GPLv2
|
|
|
9
9
|
Project-URL: Source Code, https://github.com/bondbox/xcommand/
|
|
10
10
|
Project-URL: Bug Tracker, https://github.com/bondbox/xcommand/issues
|
|
11
11
|
Project-URL: Documentation, https://github.com/bondbox/xcommand/
|
|
12
|
-
Keywords: command-line,argparse,shell,bash,terminal
|
|
12
|
+
Keywords: command-line,argparse,argcomplete,shell,bash,terminal
|
|
13
13
|
Platform: any
|
|
14
14
|
Classifier: Programming Language :: Python
|
|
15
15
|
Classifier: Programming Language :: Python :: 3
|
|
16
16
|
Requires-Python: >=3.8
|
|
17
17
|
Description-Content-Type: text/markdown
|
|
18
18
|
License-File: LICENSE
|
|
19
|
+
Requires-Dist: argcomplete>=3.2.1
|
|
19
20
|
Requires-Dist: xkits_logger>=0.1
|
|
20
21
|
|
|
21
22
|
# xcommand
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
xkits_logger>=0.1
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|