localstack 3.6.0__tar.gz → 3.6.1.dev121__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
1
  Metadata-Version: 2.1
2
2
  Name: localstack
3
- Version: 3.6.0
3
+ Version: 3.6.1.dev121
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,13 +13,13 @@ 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==3.6.0
16
+ Requires-Dist: localstack-ext==3.6.1.dev121
17
17
  Provides-Extra: runtime
18
18
  Requires-Dist: localstack-core[runtime]; extra == "runtime"
19
- Requires-Dist: localstack-ext[runtime]==3.6.0; extra == "runtime"
19
+ Requires-Dist: localstack-ext[runtime]==3.6.1.dev121; extra == "runtime"
20
20
 
21
21
  <p align="center">
22
- :zap: We are thrilled to announce the release of <a href="https://discuss.localstack.cloud/t/localstack-release-v3-5-0/947">LocalStack 3.5</a> :zap:
22
+ :zap: We are thrilled to announce the release of <a href="https://discuss.localstack.cloud/t/localstack-release-v3-6-0/997">LocalStack 3.6</a> :zap:
23
23
  </p>
24
24
 
25
25
  <p align="center">
@@ -113,7 +113,7 @@ Start LocalStack inside a Docker container by running:
113
113
  / /___/ /_/ / /__/ /_/ / /___/ / /_/ /_/ / /__/ ,<
114
114
  /_____/\____/\___/\__,_/_//____/\__/\__,_/\___/_/|_|
115
115
 
116
- 💻 LocalStack CLI 3.5.0
116
+ 💻 LocalStack CLI 3.6.0
117
117
  👤 Profile: default
118
118
 
119
119
  [12:47:13] starting LocalStack in Docker mode 🐳 localstack.py:494
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: localstack
3
- Version: 3.6.0
3
+ Version: 3.6.1.dev121
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,13 +13,13 @@ 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==3.6.0
16
+ Requires-Dist: localstack-ext==3.6.1.dev121
17
17
  Provides-Extra: runtime
18
18
  Requires-Dist: localstack-core[runtime]; extra == "runtime"
19
- Requires-Dist: localstack-ext[runtime]==3.6.0; extra == "runtime"
19
+ Requires-Dist: localstack-ext[runtime]==3.6.1.dev121; extra == "runtime"
20
20
 
21
21
  <p align="center">
22
- :zap: We are thrilled to announce the release of <a href="https://discuss.localstack.cloud/t/localstack-release-v3-5-0/947">LocalStack 3.5</a> :zap:
22
+ :zap: We are thrilled to announce the release of <a href="https://discuss.localstack.cloud/t/localstack-release-v3-6-0/997">LocalStack 3.6</a> :zap:
23
23
  </p>
24
24
 
25
25
  <p align="center">
@@ -113,7 +113,7 @@ Start LocalStack inside a Docker container by running:
113
113
  / /___/ /_/ / /__/ /_/ / /___/ / /_/ /_/ / /__/ ,<
114
114
  /_____/\____/\___/\__,_/_//____/\__/\__,_/\___/_/|_|
115
115
 
116
- 💻 LocalStack CLI 3.5.0
116
+ 💻 LocalStack CLI 3.6.0
117
117
  👤 Profile: default
118
118
 
119
119
  [12:47:13] starting LocalStack in Docker mode 🐳 localstack.py:494
@@ -1,8 +1,7 @@
1
- MANIFEST.in
2
- VERSION
3
1
  setup.py
4
2
  localstack.egg-info/PKG-INFO
5
3
  localstack.egg-info/SOURCES.txt
6
4
  localstack.egg-info/dependency_links.txt
7
5
  localstack.egg-info/requires.txt
8
- localstack.egg-info/top_level.txt
6
+ localstack.egg-info/top_level.txt
7
+ localstack_cli/__init__.py
@@ -0,0 +1,6 @@
1
+ localstack-core
2
+ localstack-ext==3.6.1.dev121
3
+
4
+ [runtime]
5
+ localstack-core[runtime]
6
+ localstack-ext[runtime]==3.6.1.dev121
@@ -0,0 +1,16 @@
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 = '3.6.1.dev121'
16
+ __version_tuple__ = version_tuple = (3, 6, 1, 'dev121')
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env python
2
- import os
3
2
  import urllib.request
4
3
 
4
+ from localstack_cli import __version__
5
5
  from setuptools import setup
6
6
 
7
7
  # download the README.md from the community repo
@@ -17,18 +17,9 @@ except Exception:
17
17
 
18
18
  traceback.print_exc()
19
19
 
20
-
21
- # read the version from the VERSION file
22
- def get_version():
23
- with open(os.path.join(os.path.dirname(__file__), "VERSION"), "r") as version_file:
24
- return version_file.read().strip()
25
-
26
-
27
- VERSION = get_version()
28
-
29
20
  setup(
30
21
  name="localstack",
31
- version=VERSION,
22
+ version=__version__,
32
23
  long_description=readme_content,
33
24
  long_description_content_type="text/markdown",
34
25
  description="LocalStack - A fully functional local Cloud stack",
@@ -43,8 +34,11 @@ setup(
43
34
  "Topic :: Software Development :: Testing",
44
35
  "Topic :: System :: Emulators",
45
36
  ],
46
- install_requires=["localstack-core", f"localstack-ext=={VERSION}"],
37
+ install_requires=["localstack-core", f"localstack-ext=={__version__}"],
47
38
  extras_require={
48
- "runtime": ["localstack-core[runtime]", f"localstack-ext[runtime]=={VERSION}"],
39
+ "runtime": [
40
+ "localstack-core[runtime]",
41
+ f"localstack-ext[runtime]=={__version__}",
42
+ ],
49
43
  },
50
44
  )
@@ -1 +0,0 @@
1
- include VERSION
localstack-3.6.0/VERSION DELETED
@@ -1 +0,0 @@
1
- 3.6.0
@@ -1,6 +0,0 @@
1
- localstack-core
2
- localstack-ext==3.6.0
3
-
4
- [runtime]
5
- localstack-core[runtime]
6
- localstack-ext[runtime]==3.6.0
File without changes