commandman 0.5.0__tar.gz → 0.5.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.
- {commandman-0.5.0/commandman.egg-info → commandman-0.5.2}/PKG-INFO +10 -9
- {commandman-0.5.0 → commandman-0.5.2}/README.md +5 -5
- {commandman-0.5.0 → commandman-0.5.2}/commandman/__init__.py +2 -2
- {commandman-0.5.0 → commandman-0.5.2}/commandman/app.py +2 -2
- {commandman-0.5.0 → commandman-0.5.2}/commandman/commander.py +1 -1
- {commandman-0.5.0 → commandman-0.5.2}/commandman/config.py +1 -1
- {commandman-0.5.0 → commandman-0.5.2}/commandman/manager.py +2 -2
- {commandman-0.5.0 → commandman-0.5.2/commandman.egg-info}/PKG-INFO +10 -9
- commandman-0.5.2/commandman.egg-info/requires.txt +3 -0
- {commandman-0.5.0 → commandman-0.5.2}/setup.cfg +3 -3
- {commandman-0.5.0 → commandman-0.5.2}/setup.py +1 -1
- commandman-0.5.0/commandman.egg-info/requires.txt +0 -3
- {commandman-0.5.0 → commandman-0.5.2}/LICENSE +0 -0
- {commandman-0.5.0 → commandman-0.5.2}/MANIFEST.in +0 -0
- {commandman-0.5.0 → commandman-0.5.2}/commandman.egg-info/SOURCES.txt +0 -0
- {commandman-0.5.0 → commandman-0.5.2}/commandman.egg-info/dependency_links.txt +0 -0
- {commandman-0.5.0 → commandman-0.5.2}/commandman.egg-info/entry_points.txt +0 -0
- {commandman-0.5.0 → commandman-0.5.2}/commandman.egg-info/not-zip-safe +0 -0
- {commandman-0.5.0 → commandman-0.5.2}/commandman.egg-info/top_level.txt +0 -0
- {commandman-0.5.0 → commandman-0.5.2}/requirements.txt +0 -0
- {commandman-0.5.0 → commandman-0.5.2}/tox.ini +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: commandman
|
|
3
|
-
Version: 0.5.
|
|
3
|
+
Version: 0.5.2
|
|
4
4
|
Summary: Console utility for working with command packages. Storage, execution, autorun.
|
|
5
5
|
Home-page: https://github.com/smartlegionlab/commandman/
|
|
6
6
|
Author: A.A. Suvorov
|
|
@@ -24,17 +24,18 @@ Classifier: Topic :: Utilities
|
|
|
24
24
|
Requires-Python: >=3.6
|
|
25
25
|
Description-Content-Type: text/markdown
|
|
26
26
|
License-File: LICENSE
|
|
27
|
-
Requires-Dist: click
|
|
28
|
-
Requires-Dist: smartcliapp
|
|
29
|
-
Requires-Dist: commandex
|
|
27
|
+
Requires-Dist: click==8.0.1
|
|
28
|
+
Requires-Dist: smartcliapp==0.4.0
|
|
29
|
+
Requires-Dist: commandex==0.2.2
|
|
30
|
+
Dynamic: license-file
|
|
30
31
|
|
|
31
|
-
# commandman
|
|
32
|
+
# commandman <sup>v0.5.2</sup>
|
|
32
33
|
|
|
33
34
|
Console command manager.
|
|
34
35
|
|
|
35
36
|
***
|
|
36
37
|
|
|
37
|
-
|
|
38
|
+
[](https://pepy.tech/projects/commandman)
|
|
38
39
|

|
|
39
40
|
[](https://pypi.org/project/commandman/)
|
|
40
41
|
[](https://github.com/smartlegionlab/commandman/)
|
|
@@ -67,7 +68,7 @@ Author and developer: ___A.A. Suvorov.___
|
|
|
67
68
|
|
|
68
69
|
## What's new?
|
|
69
70
|
|
|
70
|
-
### ___commandman v0.5.
|
|
71
|
+
### ___commandman v0.5.2___
|
|
71
72
|
|
|
72
73
|
***
|
|
73
74
|
|
|
@@ -273,6 +274,6 @@ or
|
|
|
273
274
|
--------------------------------------------------------
|
|
274
275
|
Licensed under the terms of the BSD 3-Clause License
|
|
275
276
|
(see LICENSE for details).
|
|
276
|
-
Copyright © 2018-
|
|
277
|
+
Copyright © 2018-2025, A.A. Suvorov
|
|
277
278
|
All rights reserved.
|
|
278
279
|
--------------------------------------------------------
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
# commandman
|
|
1
|
+
# commandman <sup>v0.5.2</sup>
|
|
2
2
|
|
|
3
3
|
Console command manager.
|
|
4
4
|
|
|
5
5
|
***
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
[](https://pepy.tech/projects/commandman)
|
|
8
8
|

|
|
9
9
|
[](https://pypi.org/project/commandman/)
|
|
10
10
|
[](https://github.com/smartlegionlab/commandman/)
|
|
@@ -37,7 +37,7 @@ Author and developer: ___A.A. Suvorov.___
|
|
|
37
37
|
|
|
38
38
|
## What's new?
|
|
39
39
|
|
|
40
|
-
### ___commandman v0.5.
|
|
40
|
+
### ___commandman v0.5.2___
|
|
41
41
|
|
|
42
42
|
***
|
|
43
43
|
|
|
@@ -243,6 +243,6 @@ or
|
|
|
243
243
|
--------------------------------------------------------
|
|
244
244
|
Licensed under the terms of the BSD 3-Clause License
|
|
245
245
|
(see LICENSE for details).
|
|
246
|
-
Copyright © 2018-
|
|
246
|
+
Copyright © 2018-2025, A.A. Suvorov
|
|
247
247
|
All rights reserved.
|
|
248
|
-
--------------------------------------------------------
|
|
248
|
+
--------------------------------------------------------
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# --------------------------------------------------------
|
|
2
2
|
# Licensed under the terms of the BSD 3-Clause License
|
|
3
3
|
# (see LICENSE for details).
|
|
4
|
-
# Copyright © 2018-
|
|
4
|
+
# Copyright © 2018-2025, A.A. Suvorov
|
|
5
5
|
# All rights reserved.
|
|
6
6
|
# --------------------------------------------------------
|
|
7
7
|
"""Cross-platform console command manager."""
|
|
8
|
-
__version__ = '0.5.
|
|
8
|
+
__version__ = '0.5.2'
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# --------------------------------------------------------
|
|
2
2
|
# Licensed under the terms of the BSD 3-Clause License
|
|
3
3
|
# (see LICENSE for details).
|
|
4
|
-
# Copyright © 2018-
|
|
4
|
+
# Copyright © 2018-2025, A.A. Suvorov
|
|
5
5
|
# All rights reserved.
|
|
6
6
|
# --------------------------------------------------------
|
|
7
7
|
import click
|
|
@@ -24,7 +24,7 @@ def cli(file, add_list, exc_list, auto):
|
|
|
24
24
|
\b
|
|
25
25
|
Licensed under the terms of the BSD 3-Clause License
|
|
26
26
|
(see LICENSE for details).
|
|
27
|
-
Copyright © 2018-
|
|
27
|
+
Copyright © 2018-2025, A.A. Suvorov
|
|
28
28
|
All rights reserved.
|
|
29
29
|
|
|
30
30
|
"""
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# --------------------------------------------------------
|
|
2
2
|
# Licensed under the terms of the BSD 3-Clause License
|
|
3
3
|
# (see LICENSE for details).
|
|
4
|
-
# Copyright © 2018-
|
|
4
|
+
# Copyright © 2018-2025, A.A. Suvorov
|
|
5
5
|
# All rights reserved.
|
|
6
6
|
# --------------------------------------------------------
|
|
7
7
|
import os
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# --------------------------------------------------------
|
|
2
2
|
# Licensed under the terms of the BSD 3-Clause License
|
|
3
3
|
# (see LICENSE for details).
|
|
4
|
-
# Copyright © 2018-
|
|
4
|
+
# Copyright © 2018-2025, A.A. Suvorov
|
|
5
5
|
# All rights reserved.
|
|
6
6
|
# --------------------------------------------------------
|
|
7
7
|
import click
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# --------------------------------------------------------
|
|
2
2
|
# Licensed under the terms of the BSD 3-Clause License
|
|
3
3
|
# (see LICENSE for details).
|
|
4
|
-
# Copyright © 2018-
|
|
4
|
+
# Copyright © 2018-2025, A.A. Suvorov
|
|
5
5
|
# All rights reserved.
|
|
6
6
|
# --------------------------------------------------------
|
|
7
7
|
from commandman import __version__
|
|
@@ -15,5 +15,5 @@ class CliMan(Informer):
|
|
|
15
15
|
title = 'CommandMan'
|
|
16
16
|
description = 'Command Manager'
|
|
17
17
|
version = __version__
|
|
18
|
-
copyright = 'Copyright © 2018-
|
|
18
|
+
copyright = 'Copyright © 2018-2025, A.A. Suvorov'
|
|
19
19
|
url = 'https://github.com/smartlegionlab/'
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: commandman
|
|
3
|
-
Version: 0.5.
|
|
3
|
+
Version: 0.5.2
|
|
4
4
|
Summary: Console utility for working with command packages. Storage, execution, autorun.
|
|
5
5
|
Home-page: https://github.com/smartlegionlab/commandman/
|
|
6
6
|
Author: A.A. Suvorov
|
|
@@ -24,17 +24,18 @@ Classifier: Topic :: Utilities
|
|
|
24
24
|
Requires-Python: >=3.6
|
|
25
25
|
Description-Content-Type: text/markdown
|
|
26
26
|
License-File: LICENSE
|
|
27
|
-
Requires-Dist: click
|
|
28
|
-
Requires-Dist: smartcliapp
|
|
29
|
-
Requires-Dist: commandex
|
|
27
|
+
Requires-Dist: click==8.0.1
|
|
28
|
+
Requires-Dist: smartcliapp==0.4.0
|
|
29
|
+
Requires-Dist: commandex==0.2.2
|
|
30
|
+
Dynamic: license-file
|
|
30
31
|
|
|
31
|
-
# commandman
|
|
32
|
+
# commandman <sup>v0.5.2</sup>
|
|
32
33
|
|
|
33
34
|
Console command manager.
|
|
34
35
|
|
|
35
36
|
***
|
|
36
37
|
|
|
37
|
-
|
|
38
|
+
[](https://pepy.tech/projects/commandman)
|
|
38
39
|

|
|
39
40
|
[](https://pypi.org/project/commandman/)
|
|
40
41
|
[](https://github.com/smartlegionlab/commandman/)
|
|
@@ -67,7 +68,7 @@ Author and developer: ___A.A. Suvorov.___
|
|
|
67
68
|
|
|
68
69
|
## What's new?
|
|
69
70
|
|
|
70
|
-
### ___commandman v0.5.
|
|
71
|
+
### ___commandman v0.5.2___
|
|
71
72
|
|
|
72
73
|
***
|
|
73
74
|
|
|
@@ -273,6 +274,6 @@ or
|
|
|
273
274
|
--------------------------------------------------------
|
|
274
275
|
Licensed under the terms of the BSD 3-Clause License
|
|
275
276
|
(see LICENSE for details).
|
|
276
|
-
Copyright © 2018-
|
|
277
|
+
Copyright © 2018-2025, A.A. Suvorov
|
|
277
278
|
All rights reserved.
|
|
278
279
|
--------------------------------------------------------
|
|
@@ -37,9 +37,9 @@ packages = find:
|
|
|
37
37
|
include_package_data = true
|
|
38
38
|
zip_safe = false
|
|
39
39
|
install_requires =
|
|
40
|
-
click
|
|
41
|
-
smartcliapp
|
|
42
|
-
commandex
|
|
40
|
+
click == 8.0.1
|
|
41
|
+
smartcliapp == 0.4.0
|
|
42
|
+
commandex == 0.2.2
|
|
43
43
|
|
|
44
44
|
[options.entry_points]
|
|
45
45
|
console_scripts =
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# --------------------------------------------------------
|
|
2
2
|
# Licensed under the terms of the BSD 3-Clause License
|
|
3
3
|
# (see LICENSE for details).
|
|
4
|
-
# Copyright © 2018-
|
|
4
|
+
# Copyright © 2018-2025, A.A. Suvorov
|
|
5
5
|
# All rights reserved.
|
|
6
6
|
# --------------------------------------------------------
|
|
7
7
|
from setuptools import setup, find_packages
|
|
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
|