snakemake-interface-software-deployment-plugins 0.2.0__tar.gz → 0.2.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.
- {snakemake_interface_software_deployment_plugins-0.2.0 → snakemake_interface_software_deployment_plugins-0.2.1}/PKG-INFO +1 -1
- {snakemake_interface_software_deployment_plugins-0.2.0 → snakemake_interface_software_deployment_plugins-0.2.1}/pyproject.toml +1 -1
- {snakemake_interface_software_deployment_plugins-0.2.0 → snakemake_interface_software_deployment_plugins-0.2.1}/snakemake_interface_software_deployment_plugins/__init__.py +2 -1
- {snakemake_interface_software_deployment_plugins-0.2.0 → snakemake_interface_software_deployment_plugins-0.2.1}/LICENSE +0 -0
- {snakemake_interface_software_deployment_plugins-0.2.0 → snakemake_interface_software_deployment_plugins-0.2.1}/README.md +0 -0
- {snakemake_interface_software_deployment_plugins-0.2.0 → snakemake_interface_software_deployment_plugins-0.2.1}/snakemake_interface_software_deployment_plugins/_common.py +0 -0
- {snakemake_interface_software_deployment_plugins-0.2.0 → snakemake_interface_software_deployment_plugins-0.2.1}/snakemake_interface_software_deployment_plugins/registry/__init__.py +0 -0
- {snakemake_interface_software_deployment_plugins-0.2.0 → snakemake_interface_software_deployment_plugins-0.2.1}/snakemake_interface_software_deployment_plugins/registry/plugin.py +0 -0
- {snakemake_interface_software_deployment_plugins-0.2.0 → snakemake_interface_software_deployment_plugins-0.2.1}/snakemake_interface_software_deployment_plugins/settings.py +0 -0
- {snakemake_interface_software_deployment_plugins-0.2.0 → snakemake_interface_software_deployment_plugins-0.2.1}/snakemake_interface_software_deployment_plugins/tests.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: snakemake-interface-software-deployment-plugins
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.1
|
|
4
4
|
Summary: This package provides a stable interface for interactions between Snakemake and its software deployment plugins.
|
|
5
5
|
License: MIT
|
|
6
6
|
Author: Johannes Köster
|
|
@@ -5,7 +5,7 @@ license = "MIT"
|
|
|
5
5
|
name = "snakemake-interface-software-deployment-plugins"
|
|
6
6
|
packages = [{include = "snakemake_interface_software_deployment_plugins"}]
|
|
7
7
|
readme = "README.md"
|
|
8
|
-
version = "0.2.
|
|
8
|
+
version = "0.2.1"
|
|
9
9
|
|
|
10
10
|
[tool.poetry.dependencies]
|
|
11
11
|
argparse-dataclass = "^2.0.0"
|
|
@@ -54,7 +54,8 @@ class EnvBase:
|
|
|
54
54
|
"""Do stuff after object initialization."""
|
|
55
55
|
pass
|
|
56
56
|
|
|
57
|
-
|
|
57
|
+
@staticmethod
|
|
58
|
+
def once(func):
|
|
58
59
|
"""Decorator to cache the result of a method call that shall be only
|
|
59
60
|
executed once per combination of plugin and "within" environment.
|
|
60
61
|
"""
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|