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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: xkits-command
3
- Version: 0.1
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,5 +1,5 @@
1
1
  [metadata]
2
- keywords = command-line, argparse, shell, bash, terminal
2
+ keywords = command-line, argparse, argcomplete, shell, bash, terminal
3
3
  long_description = file: README.md
4
4
  long_description_content_type = text/markdown
5
5
  license = GPLv2
@@ -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
 
@@ -1,7 +1,7 @@
1
1
  # coding:utf-8
2
2
 
3
3
  __project__ = "xkits-command"
4
- __version__ = "0.1"
4
+ __version__ = "0.2"
5
5
  __description__ = "Command line module"
6
6
  __urlhome__ = "https://github.com/bondbox/xcommand/"
7
7
 
@@ -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.1
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
@@ -0,0 +1,2 @@
1
+ argcomplete>=3.2.1
2
+ xkits_logger>=0.1
@@ -1 +0,0 @@
1
- xkits_logger>=0.1
File without changes
File without changes
File without changes