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.
- {commandpack-0.3.0/commandpack.egg-info → commandpack-0.3.1}/PKG-INFO +3 -3
- {commandpack-0.3.0 → commandpack-0.3.1}/README.md +1 -1
- {commandpack-0.3.0 → commandpack-0.3.1}/commandpack/__init__.py +4 -2
- {commandpack-0.3.0 → commandpack-0.3.1}/commandpack/executors.py +3 -1
- {commandpack-0.3.0 → commandpack-0.3.1}/commandpack/factories.py +3 -1
- {commandpack-0.3.0 → commandpack-0.3.1}/commandpack/tools.py +3 -1
- {commandpack-0.3.0 → commandpack-0.3.1/commandpack.egg-info}/PKG-INFO +3 -3
- {commandpack-0.3.0 → commandpack-0.3.1}/setup.cfg +1 -1
- {commandpack-0.3.0 → commandpack-0.3.1}/setup.py +3 -1
- {commandpack-0.3.0 → commandpack-0.3.1}/LICENSE +0 -0
- {commandpack-0.3.0 → commandpack-0.3.1}/MANIFEST.in +0 -0
- {commandpack-0.3.0 → commandpack-0.3.1}/commandpack.egg-info/SOURCES.txt +0 -0
- {commandpack-0.3.0 → commandpack-0.3.1}/commandpack.egg-info/dependency_links.txt +0 -0
- {commandpack-0.3.0 → commandpack-0.3.1}/commandpack.egg-info/not-zip-safe +0 -0
- {commandpack-0.3.0 → commandpack-0.3.1}/commandpack.egg-info/top_level.txt +0 -0
- {commandpack-0.3.0 → commandpack-0.3.1}/requirements.txt +0 -0
- {commandpack-0.3.0 → commandpack-0.3.1}/tox.ini +0 -0
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: commandpack
|
|
3
|
-
Version: 0.3.
|
|
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:
|
|
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.
|
|
71
|
+
___commandpack v0.3.1___
|
|
72
72
|
|
|
73
73
|
***
|
|
74
74
|
|
|
@@ -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.
|
|
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.
|
|
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:
|
|
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.
|
|
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 =
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|