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.
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.4
2
2
  Name: commandman
3
- Version: 0.5.0
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~=8.0.1
28
- Requires-Dist: smartcliapp~=0.3.0
29
- Requires-Dist: commandex~=0.2.1
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
+ [![PyPI Downloads](https://static.pepy.tech/badge/commandman)](https://pepy.tech/projects/commandman)
38
39
  ![GitHub top language](https://img.shields.io/github/languages/top/smartlegionlab/commandman)
39
40
  [![PyPI - Downloads](https://img.shields.io/pypi/dm/commandman?label=pypi%20downloads)](https://pypi.org/project/commandman/)
40
41
  [![GitHub release (latest by date)](https://img.shields.io/github/v/release/smartlegionlab/commandman)](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.0___
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-2024, A.A. Suvorov
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
+ [![PyPI Downloads](https://static.pepy.tech/badge/commandman)](https://pepy.tech/projects/commandman)
8
8
  ![GitHub top language](https://img.shields.io/github/languages/top/smartlegionlab/commandman)
9
9
  [![PyPI - Downloads](https://img.shields.io/pypi/dm/commandman?label=pypi%20downloads)](https://pypi.org/project/commandman/)
10
10
  [![GitHub release (latest by date)](https://img.shields.io/github/v/release/smartlegionlab/commandman)](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.0___
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-2024, A.A. Suvorov
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-2024, A.A. Suvorov
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.0'
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-2024, A.A. Suvorov
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-2024, A.A. Suvorov
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-2024, A.A. Suvorov
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-2024, A.A. Suvorov
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-2024, A.A. Suvorov
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-2024, A.A. Suvorov'
18
+ copyright = 'Copyright © 2018-2025, A.A. Suvorov'
19
19
  url = 'https://github.com/smartlegionlab/'
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.4
2
2
  Name: commandman
3
- Version: 0.5.0
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~=8.0.1
28
- Requires-Dist: smartcliapp~=0.3.0
29
- Requires-Dist: commandex~=0.2.1
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
+ [![PyPI Downloads](https://static.pepy.tech/badge/commandman)](https://pepy.tech/projects/commandman)
38
39
  ![GitHub top language](https://img.shields.io/github/languages/top/smartlegionlab/commandman)
39
40
  [![PyPI - Downloads](https://img.shields.io/pypi/dm/commandman?label=pypi%20downloads)](https://pypi.org/project/commandman/)
40
41
  [![GitHub release (latest by date)](https://img.shields.io/github/v/release/smartlegionlab/commandman)](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.0___
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-2024, A.A. Suvorov
277
+ Copyright © 2018-2025, A.A. Suvorov
277
278
  All rights reserved.
278
279
  --------------------------------------------------------
@@ -0,0 +1,3 @@
1
+ click==8.0.1
2
+ smartcliapp==0.4.0
3
+ commandex==0.2.2
@@ -37,9 +37,9 @@ packages = find:
37
37
  include_package_data = true
38
38
  zip_safe = false
39
39
  install_requires =
40
- click ~= 8.0.1
41
- smartcliapp ~= 0.3.0
42
- commandex ~= 0.2.1
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-2024, A.A. Suvorov
4
+ # Copyright © 2018-2025, A.A. Suvorov
5
5
  # All rights reserved.
6
6
  # --------------------------------------------------------
7
7
  from setuptools import setup, find_packages
@@ -1,3 +0,0 @@
1
- click~=8.0.1
2
- smartcliapp~=0.3.0
3
- commandex~=0.2.1
File without changes
File without changes
File without changes
File without changes