commandpack 0.3.0__tar.gz → 0.3.1__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,9 +1,9 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: commandpack
3
- Version: 0.3.0
3
+ Version: 0.3.1
4
4
  Summary: A cross-platform library for creation, storage, management of commands and command packages. Execution of commands, parsing of files with command packages.
5
5
  Home-page: https://github.com/smartlegionlab/commandpack/
6
- Author: Aleksandr Suvorov
6
+ Author: A.A Suvorov
7
7
  Author-email: smartlegiondev@gmail.com
8
8
  License: BSD 3-Clause License
9
9
  Project-URL: Documentation, https://github.com/smartlegionlab/commandpack/blob/master/README.md
@@ -68,7 +68,7 @@ Author and developer: ___A.A Suvorov___
68
68
 
69
69
  ## What's new?
70
70
 
71
- ___commandpack v0.3.0___
71
+ ___commandpack v0.3.1___
72
72
 
73
73
  ***
74
74
 
@@ -45,7 +45,7 @@ Author and developer: ___A.A Suvorov___
45
45
 
46
46
  ## What's new?
47
47
 
48
- ___commandpack v0.3.0___
48
+ ___commandpack v0.3.1___
49
49
 
50
50
  ***
51
51
 
@@ -1,9 +1,11 @@
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-2024, A.A. Suvorov
5
5
  # All rights reserved.
6
6
  # --------------------------------------------------------
7
+ # https://github.com/smartlegionlab/
8
+ # --------------------------------------------------------
7
9
  """
8
10
  Command executors' library.
9
11
 
@@ -12,4 +14,4 @@ of commands and command packages. Execution of commands,
12
14
  parsing of files with command packages.
13
15
 
14
16
  """
15
- __version__ = '0.3.0'
17
+ __version__ = '0.3.1'
@@ -1,9 +1,11 @@
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-2024, A.A. Suvorov
5
5
  # All rights reserved.
6
6
  # --------------------------------------------------------
7
+ # https://github.com/smartlegionlab/
8
+ # --------------------------------------------------------
7
9
  """Tests for executors.py"""
8
10
  import os
9
11
  import subprocess
@@ -1,9 +1,11 @@
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-2024, A.A. Suvorov
5
5
  # All rights reserved.
6
6
  # --------------------------------------------------------
7
+ # https://github.com/smartlegionlab/
8
+ # --------------------------------------------------------
7
9
  from commandpack.executors import OsExecutor, Executor, SubExecutor
8
10
  from commandpack.tools import PackMaker, CfgParser, JsonParser, Parser, Command, Pack
9
11
 
@@ -1,9 +1,11 @@
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-2024, A.A. Suvorov
5
5
  # All rights reserved.
6
6
  # --------------------------------------------------------
7
+ # https://github.com/smartlegionlab/
8
+ # --------------------------------------------------------
7
9
  """Module for working with commands"""
8
10
  import json
9
11
  from abc import ABC, abstractmethod
@@ -1,9 +1,9 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: commandpack
3
- Version: 0.3.0
3
+ Version: 0.3.1
4
4
  Summary: A cross-platform library for creation, storage, management of commands and command packages. Execution of commands, parsing of files with command packages.
5
5
  Home-page: https://github.com/smartlegionlab/commandpack/
6
- Author: Aleksandr Suvorov
6
+ Author: A.A Suvorov
7
7
  Author-email: smartlegiondev@gmail.com
8
8
  License: BSD 3-Clause License
9
9
  Project-URL: Documentation, https://github.com/smartlegionlab/commandpack/blob/master/README.md
@@ -68,7 +68,7 @@ Author and developer: ___A.A Suvorov___
68
68
 
69
69
  ## What's new?
70
70
 
71
- ___commandpack v0.3.0___
71
+ ___commandpack v0.3.1___
72
72
 
73
73
  ***
74
74
 
@@ -1,7 +1,7 @@
1
1
  [metadata]
2
2
  name = commandpack
3
3
  version = attr: commandpack.__version__
4
- author = Aleksandr Suvorov
4
+ author = A.A Suvorov
5
5
  author_email = smartlegiondev@gmail.com
6
6
  description = A cross-platform library for creation, storage, management of commands and command packages. Execution of commands, parsing of files with command packages.
7
7
  long_description = file: README.md
@@ -1,9 +1,11 @@
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-2024, A.A. Suvorov
5
5
  # All rights reserved.
6
6
  # --------------------------------------------------------
7
+ # https://github.com/smartlegionlab/
8
+ # --------------------------------------------------------
7
9
  from setuptools import setup, find_packages
8
10
 
9
11
  setup(
File without changes
File without changes
File without changes