localstack 4.1.2.dev52__tar.gz → 4.1.2.dev104__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.
- {localstack-4.1.2.dev52 → localstack-4.1.2.dev104}/PKG-INFO +3 -3
- {localstack-4.1.2.dev52 → localstack-4.1.2.dev104}/localstack.egg-info/PKG-INFO +3 -3
- localstack-4.1.2.dev104/localstack.egg-info/requires.txt +6 -0
- localstack-4.1.2.dev104/localstack_cli/__init__.py +21 -0
- localstack-4.1.2.dev52/localstack.egg-info/requires.txt +0 -6
- localstack-4.1.2.dev52/localstack_cli/__init__.py +0 -16
- {localstack-4.1.2.dev52 → localstack-4.1.2.dev104}/localstack.egg-info/SOURCES.txt +0 -0
- {localstack-4.1.2.dev52 → localstack-4.1.2.dev104}/localstack.egg-info/dependency_links.txt +0 -0
- {localstack-4.1.2.dev52 → localstack-4.1.2.dev104}/localstack.egg-info/top_level.txt +0 -0
- {localstack-4.1.2.dev52 → localstack-4.1.2.dev104}/setup.cfg +0 -0
- {localstack-4.1.2.dev52 → localstack-4.1.2.dev104}/setup.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: localstack
|
|
3
|
-
Version: 4.1.2.
|
|
3
|
+
Version: 4.1.2.dev104
|
|
4
4
|
Summary: LocalStack - A fully functional local Cloud stack
|
|
5
5
|
Home-page: https://github.com/localstack/localstack
|
|
6
6
|
Author: LocalStack Contributors
|
|
@@ -13,10 +13,10 @@ Classifier: Topic :: Software Development :: Testing
|
|
|
13
13
|
Classifier: Topic :: System :: Emulators
|
|
14
14
|
Description-Content-Type: text/markdown
|
|
15
15
|
Requires-Dist: localstack-core
|
|
16
|
-
Requires-Dist: localstack-ext==4.1.2.
|
|
16
|
+
Requires-Dist: localstack-ext==4.1.2.dev104
|
|
17
17
|
Provides-Extra: runtime
|
|
18
18
|
Requires-Dist: localstack-core[runtime]; extra == "runtime"
|
|
19
|
-
Requires-Dist: localstack-ext[runtime]==4.1.2.
|
|
19
|
+
Requires-Dist: localstack-ext[runtime]==4.1.2.dev104; extra == "runtime"
|
|
20
20
|
Dynamic: author
|
|
21
21
|
Dynamic: author-email
|
|
22
22
|
Dynamic: classifier
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: localstack
|
|
3
|
-
Version: 4.1.2.
|
|
3
|
+
Version: 4.1.2.dev104
|
|
4
4
|
Summary: LocalStack - A fully functional local Cloud stack
|
|
5
5
|
Home-page: https://github.com/localstack/localstack
|
|
6
6
|
Author: LocalStack Contributors
|
|
@@ -13,10 +13,10 @@ Classifier: Topic :: Software Development :: Testing
|
|
|
13
13
|
Classifier: Topic :: System :: Emulators
|
|
14
14
|
Description-Content-Type: text/markdown
|
|
15
15
|
Requires-Dist: localstack-core
|
|
16
|
-
Requires-Dist: localstack-ext==4.1.2.
|
|
16
|
+
Requires-Dist: localstack-ext==4.1.2.dev104
|
|
17
17
|
Provides-Extra: runtime
|
|
18
18
|
Requires-Dist: localstack-core[runtime]; extra == "runtime"
|
|
19
|
-
Requires-Dist: localstack-ext[runtime]==4.1.2.
|
|
19
|
+
Requires-Dist: localstack-ext[runtime]==4.1.2.dev104; extra == "runtime"
|
|
20
20
|
Dynamic: author
|
|
21
21
|
Dynamic: author-email
|
|
22
22
|
Dynamic: classifier
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# file generated by setuptools-scm
|
|
2
|
+
# don't change, don't track in version control
|
|
3
|
+
|
|
4
|
+
__all__ = ["__version__", "__version_tuple__", "version", "version_tuple"]
|
|
5
|
+
|
|
6
|
+
TYPE_CHECKING = False
|
|
7
|
+
if TYPE_CHECKING:
|
|
8
|
+
from typing import Tuple
|
|
9
|
+
from typing import Union
|
|
10
|
+
|
|
11
|
+
VERSION_TUPLE = Tuple[Union[int, str], ...]
|
|
12
|
+
else:
|
|
13
|
+
VERSION_TUPLE = object
|
|
14
|
+
|
|
15
|
+
version: str
|
|
16
|
+
__version__: str
|
|
17
|
+
__version_tuple__: VERSION_TUPLE
|
|
18
|
+
version_tuple: VERSION_TUPLE
|
|
19
|
+
|
|
20
|
+
__version__ = version = '4.1.2.dev104'
|
|
21
|
+
__version_tuple__ = version_tuple = (4, 1, 2, 'dev104')
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
# file generated by setuptools_scm
|
|
2
|
-
# don't change, don't track in version control
|
|
3
|
-
TYPE_CHECKING = False
|
|
4
|
-
if TYPE_CHECKING:
|
|
5
|
-
from typing import Tuple, Union
|
|
6
|
-
VERSION_TUPLE = Tuple[Union[int, str], ...]
|
|
7
|
-
else:
|
|
8
|
-
VERSION_TUPLE = object
|
|
9
|
-
|
|
10
|
-
version: str
|
|
11
|
-
__version__: str
|
|
12
|
-
__version_tuple__: VERSION_TUPLE
|
|
13
|
-
version_tuple: VERSION_TUPLE
|
|
14
|
-
|
|
15
|
-
__version__ = version = '4.1.2.dev52'
|
|
16
|
-
__version_tuple__ = version_tuple = (4, 1, 2, 'dev52')
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|