robhan-cdk-lib.utils 0.0.85__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.

Potentially problematic release.


This version of robhan-cdk-lib.utils might be problematic. Click here for more details.

@@ -0,0 +1,19 @@
1
+ Copyright (c) 2025 Robert Hanuschke
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining a copy
4
+ of this software and associated documentation files (the "Software"), to deal
5
+ in the Software without restriction, including without limitation the rights
6
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7
+ copies of the Software, and to permit persons to whom the Software is
8
+ furnished to do so, subject to the following conditions:
9
+
10
+ The above copyright notice and this permission notice shall be included in all
11
+ copies or substantial portions of the Software.
12
+
13
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
19
+ SOFTWARE.
@@ -0,0 +1 @@
1
+ include pyproject.toml
@@ -0,0 +1,27 @@
1
+ Metadata-Version: 2.1
2
+ Name: robhan_cdk_lib.utils
3
+ Version: 0.0.85
4
+ Summary: @robhan-cdk-lib/utils
5
+ Home-page: https://github.com/robert-hanuschke/cdk-utils
6
+ Author: Robert Hanuschke<robhan-cdk-lib@hanuschke.eu>
7
+ License: MIT
8
+ Project-URL: Source, https://github.com/robert-hanuschke/cdk-utils
9
+ Classifier: Intended Audience :: Developers
10
+ Classifier: Operating System :: OS Independent
11
+ Classifier: Programming Language :: JavaScript
12
+ Classifier: Programming Language :: Python :: 3 :: Only
13
+ Classifier: Programming Language :: Python :: 3.9
14
+ Classifier: Programming Language :: Python :: 3.10
15
+ Classifier: Programming Language :: Python :: 3.11
16
+ Classifier: Typing :: Typed
17
+ Classifier: Development Status :: 5 - Production/Stable
18
+ Classifier: License :: OSI Approved
19
+ Requires-Python: ~=3.9
20
+ Description-Content-Type: text/markdown
21
+ License-File: LICENSE
22
+ Requires-Dist: jsii<2.0.0,>=1.118.0
23
+ Requires-Dist: publication>=0.0.3
24
+ Requires-Dist: typeguard<4.3.0,>=2.13.3
25
+
26
+ robhan_cdk_lib.utils
27
+ ====================
@@ -0,0 +1,2 @@
1
+ robhan_cdk_lib.utils
2
+ ====================
@@ -0,0 +1,9 @@
1
+ [build-system]
2
+ requires = ["setuptools~=75.3.2", "build~=1.3.0"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [tool.pyright]
6
+ defineConstant = { DEBUG = true }
7
+ pythonVersion = "3.9"
8
+ pythonPlatform = "All"
9
+ reportSelfClsParameterName = false
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,58 @@
1
+ import json
2
+ import setuptools
3
+
4
+ kwargs = json.loads(
5
+ """
6
+ {
7
+ "name": "robhan_cdk_lib.utils",
8
+ "version": "0.0.85",
9
+ "description": "@robhan-cdk-lib/utils",
10
+ "license": "MIT",
11
+ "url": "https://github.com/robert-hanuschke/cdk-utils",
12
+ "long_description_content_type": "text/markdown",
13
+ "author": "Robert Hanuschke<robhan-cdk-lib@hanuschke.eu>",
14
+ "bdist_wheel": {
15
+ "universal": true
16
+ },
17
+ "project_urls": {
18
+ "Source": "https://github.com/robert-hanuschke/cdk-utils"
19
+ },
20
+ "package_dir": {
21
+ "": "src"
22
+ },
23
+ "packages": [
24
+ "robhan_cdk_lib.utils._jsii"
25
+ ],
26
+ "package_data": {
27
+ "robhan_cdk_lib.utils._jsii": [
28
+ "utils@0.0.85.jsii.tgz"
29
+ ]
30
+ },
31
+ "python_requires": "~=3.9",
32
+ "install_requires": [
33
+ "jsii>=1.118.0, <2.0.0",
34
+ "publication>=0.0.3",
35
+ "typeguard>=2.13.3,<4.3.0"
36
+ ],
37
+ "classifiers": [
38
+ "Intended Audience :: Developers",
39
+ "Operating System :: OS Independent",
40
+ "Programming Language :: JavaScript",
41
+ "Programming Language :: Python :: 3 :: Only",
42
+ "Programming Language :: Python :: 3.9",
43
+ "Programming Language :: Python :: 3.10",
44
+ "Programming Language :: Python :: 3.11",
45
+ "Typing :: Typed",
46
+ "Development Status :: 5 - Production/Stable",
47
+ "License :: OSI Approved"
48
+ ],
49
+ "scripts": []
50
+ }
51
+ """
52
+ )
53
+
54
+ with open("README.md", encoding="utf8") as fp:
55
+ kwargs["long_description"] = fp.read()
56
+
57
+
58
+ setuptools.setup(**kwargs)
@@ -0,0 +1,39 @@
1
+ from pkgutil import extend_path
2
+ __path__ = extend_path(__path__, __name__)
3
+
4
+ import abc
5
+ import builtins
6
+ import datetime
7
+ import enum
8
+ import typing
9
+
10
+ import jsii
11
+ import publication
12
+ import typing_extensions
13
+
14
+ import typeguard
15
+ from importlib.metadata import version as _metadata_package_version
16
+ TYPEGUARD_MAJOR_VERSION = int(_metadata_package_version('typeguard').split('.')[0])
17
+
18
+ def check_type(argname: str, value: object, expected_type: typing.Any) -> typing.Any:
19
+ if TYPEGUARD_MAJOR_VERSION <= 2:
20
+ return typeguard.check_type(argname=argname, value=value, expected_type=expected_type) # type:ignore
21
+ else:
22
+ if isinstance(value, jsii._reference_map.InterfaceDynamicProxy): # pyright: ignore [reportAttributeAccessIssue]
23
+ pass
24
+ else:
25
+ if TYPEGUARD_MAJOR_VERSION == 3:
26
+ typeguard.config.collection_check_strategy = typeguard.CollectionCheckStrategy.ALL_ITEMS # type:ignore
27
+ typeguard.check_type(value=value, expected_type=expected_type) # type:ignore
28
+ else:
29
+ typeguard.check_type(value=value, expected_type=expected_type, collection_check_strategy=typeguard.CollectionCheckStrategy.ALL_ITEMS) # type:ignore
30
+
31
+ __jsii_assembly__ = jsii.JSIIAssembly.load(
32
+ "@robhan-cdk-lib/utils", "0.0.85", __name__[0:-6], "utils@0.0.85.jsii.tgz"
33
+ )
34
+
35
+ __all__ = [
36
+ "__jsii_assembly__",
37
+ ]
38
+
39
+ publication.publish()
@@ -0,0 +1,27 @@
1
+ Metadata-Version: 2.1
2
+ Name: robhan_cdk_lib.utils
3
+ Version: 0.0.85
4
+ Summary: @robhan-cdk-lib/utils
5
+ Home-page: https://github.com/robert-hanuschke/cdk-utils
6
+ Author: Robert Hanuschke<robhan-cdk-lib@hanuschke.eu>
7
+ License: MIT
8
+ Project-URL: Source, https://github.com/robert-hanuschke/cdk-utils
9
+ Classifier: Intended Audience :: Developers
10
+ Classifier: Operating System :: OS Independent
11
+ Classifier: Programming Language :: JavaScript
12
+ Classifier: Programming Language :: Python :: 3 :: Only
13
+ Classifier: Programming Language :: Python :: 3.9
14
+ Classifier: Programming Language :: Python :: 3.10
15
+ Classifier: Programming Language :: Python :: 3.11
16
+ Classifier: Typing :: Typed
17
+ Classifier: Development Status :: 5 - Production/Stable
18
+ Classifier: License :: OSI Approved
19
+ Requires-Python: ~=3.9
20
+ Description-Content-Type: text/markdown
21
+ License-File: LICENSE
22
+ Requires-Dist: jsii<2.0.0,>=1.118.0
23
+ Requires-Dist: publication>=0.0.3
24
+ Requires-Dist: typeguard<4.3.0,>=2.13.3
25
+
26
+ robhan_cdk_lib.utils
27
+ ====================
@@ -0,0 +1,12 @@
1
+ LICENSE
2
+ MANIFEST.in
3
+ README.md
4
+ pyproject.toml
5
+ setup.py
6
+ src/robhan_cdk_lib.utils.egg-info/PKG-INFO
7
+ src/robhan_cdk_lib.utils.egg-info/SOURCES.txt
8
+ src/robhan_cdk_lib.utils.egg-info/dependency_links.txt
9
+ src/robhan_cdk_lib.utils.egg-info/requires.txt
10
+ src/robhan_cdk_lib.utils.egg-info/top_level.txt
11
+ src/robhan_cdk_lib/utils/_jsii/__init__.py
12
+ src/robhan_cdk_lib/utils/_jsii/utils@0.0.85.jsii.tgz
@@ -0,0 +1,3 @@
1
+ jsii<2.0.0,>=1.118.0
2
+ publication>=0.0.3
3
+ typeguard<4.3.0,>=2.13.3