cloudstructs 0.6.37__tar.gz → 0.10.0__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.
- {cloudstructs-0.6.37/src/cloudstructs.egg-info → cloudstructs-0.10.0}/PKG-INFO +8 -4
- {cloudstructs-0.6.37 → cloudstructs-0.10.0}/README.md +1 -0
- {cloudstructs-0.6.37 → cloudstructs-0.10.0}/pyproject.toml +2 -2
- {cloudstructs-0.6.37 → cloudstructs-0.10.0}/setup.py +6 -10
- {cloudstructs-0.6.37 → cloudstructs-0.10.0}/src/cloudstructs/__init__.py +495 -244
- cloudstructs-0.10.0/src/cloudstructs/_jsii/__init__.py +42 -0
- cloudstructs-0.10.0/src/cloudstructs/_jsii/cloudstructs@0.10.0.jsii.tgz +0 -0
- {cloudstructs-0.6.37 → cloudstructs-0.10.0/src/cloudstructs.egg-info}/PKG-INFO +8 -4
- {cloudstructs-0.6.37 → cloudstructs-0.10.0}/src/cloudstructs.egg-info/SOURCES.txt +1 -1
- cloudstructs-0.10.0/src/cloudstructs.egg-info/requires.txt +5 -0
- cloudstructs-0.6.37/src/cloudstructs/_jsii/__init__.py +0 -26
- cloudstructs-0.6.37/src/cloudstructs/_jsii/cloudstructs@0.6.37.jsii.tgz +0 -0
- cloudstructs-0.6.37/src/cloudstructs.egg-info/requires.txt +0 -7
- {cloudstructs-0.6.37 → cloudstructs-0.10.0}/LICENSE +0 -0
- {cloudstructs-0.6.37 → cloudstructs-0.10.0}/MANIFEST.in +0 -0
- {cloudstructs-0.6.37 → cloudstructs-0.10.0}/setup.cfg +0 -0
- {cloudstructs-0.6.37 → cloudstructs-0.10.0}/src/cloudstructs/py.typed +0 -0
- {cloudstructs-0.6.37 → cloudstructs-0.10.0}/src/cloudstructs.egg-info/dependency_links.txt +0 -0
- {cloudstructs-0.6.37 → cloudstructs-0.10.0}/src/cloudstructs.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: cloudstructs
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.10.0
|
|
4
4
|
Summary: High-level constructs for AWS CDK
|
|
5
5
|
Home-page: https://github.com/jogold/cloudstructs.git
|
|
6
6
|
Author: Jonathan Goldwasser<jonathan.goldwasser@gmail.com>
|
|
@@ -10,17 +10,20 @@ Classifier: Intended Audience :: Developers
|
|
|
10
10
|
Classifier: Operating System :: OS Independent
|
|
11
11
|
Classifier: Programming Language :: JavaScript
|
|
12
12
|
Classifier: Programming Language :: Python :: 3 :: Only
|
|
13
|
-
Classifier: Programming Language :: Python :: 3.7
|
|
14
|
-
Classifier: Programming Language :: Python :: 3.8
|
|
15
13
|
Classifier: Programming Language :: Python :: 3.9
|
|
16
14
|
Classifier: Programming Language :: Python :: 3.10
|
|
17
15
|
Classifier: Programming Language :: Python :: 3.11
|
|
18
16
|
Classifier: Typing :: Typed
|
|
19
17
|
Classifier: Development Status :: 5 - Production/Stable
|
|
20
18
|
Classifier: License :: OSI Approved
|
|
21
|
-
Requires-Python: ~=3.
|
|
19
|
+
Requires-Python: ~=3.9
|
|
22
20
|
Description-Content-Type: text/markdown
|
|
23
21
|
License-File: LICENSE
|
|
22
|
+
Requires-Dist: aws-cdk-lib<3.0.0,>=2.232.0
|
|
23
|
+
Requires-Dist: constructs<11.0.0,>=10.0.5
|
|
24
|
+
Requires-Dist: jsii<2.0.0,>=1.124.0
|
|
25
|
+
Requires-Dist: publication>=0.0.3
|
|
26
|
+
Requires-Dist: typeguard==2.13.3
|
|
24
27
|
|
|
25
28
|
# cloudstructs
|
|
26
29
|
|
|
@@ -39,6 +42,7 @@ Version >= 0.2.0 requires AWS CDK v2.
|
|
|
39
42
|
a rule
|
|
40
43
|
* [`EmailReceiver`](src/email-receiver) Receive emails through SES, save them to S3
|
|
41
44
|
and invoke a Lambda function
|
|
45
|
+
* [`MjmlTemplate`](src/mjml-template) SES email template from [MJML](https://mjml.io/)
|
|
42
46
|
* [`SlackApp`](src/slack-app) Deploy Slack apps from manifests
|
|
43
47
|
* [`SlackEvents`](src/slack-events) Send Slack events to Amazon EventBridge
|
|
44
48
|
* [`SlackTextract`](src/slack-textract) Extract text from images posted to Slack
|
|
@@ -15,6 +15,7 @@ Version >= 0.2.0 requires AWS CDK v2.
|
|
|
15
15
|
a rule
|
|
16
16
|
* [`EmailReceiver`](src/email-receiver) Receive emails through SES, save them to S3
|
|
17
17
|
and invoke a Lambda function
|
|
18
|
+
* [`MjmlTemplate`](src/mjml-template) SES email template from [MJML](https://mjml.io/)
|
|
18
19
|
* [`SlackApp`](src/slack-app) Deploy Slack apps from manifests
|
|
19
20
|
* [`SlackEvents`](src/slack-events) Send Slack events to Amazon EventBridge
|
|
20
21
|
* [`SlackTextract`](src/slack-textract) Extract text from images posted to Slack
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
[build-system]
|
|
2
|
-
requires = ["setuptools~=
|
|
2
|
+
requires = ["setuptools~=75.3.2", "build~=1.3.0"]
|
|
3
3
|
build-backend = "setuptools.build_meta"
|
|
4
4
|
|
|
5
5
|
[tool.pyright]
|
|
6
6
|
defineConstant = { DEBUG = true }
|
|
7
|
-
pythonVersion = "3.
|
|
7
|
+
pythonVersion = "3.9"
|
|
8
8
|
pythonPlatform = "All"
|
|
9
9
|
reportSelfClsParameterName = false
|
|
@@ -5,7 +5,7 @@ kwargs = json.loads(
|
|
|
5
5
|
"""
|
|
6
6
|
{
|
|
7
7
|
"name": "cloudstructs",
|
|
8
|
-
"version": "0.
|
|
8
|
+
"version": "0.10.0",
|
|
9
9
|
"description": "High-level constructs for AWS CDK",
|
|
10
10
|
"license": "Apache-2.0",
|
|
11
11
|
"url": "https://github.com/jogold/cloudstructs.git",
|
|
@@ -26,29 +26,25 @@ kwargs = json.loads(
|
|
|
26
26
|
],
|
|
27
27
|
"package_data": {
|
|
28
28
|
"cloudstructs._jsii": [
|
|
29
|
-
"cloudstructs@0.
|
|
29
|
+
"cloudstructs@0.10.0.jsii.tgz"
|
|
30
30
|
],
|
|
31
31
|
"cloudstructs": [
|
|
32
32
|
"py.typed"
|
|
33
33
|
]
|
|
34
34
|
},
|
|
35
|
-
"python_requires": "~=3.
|
|
35
|
+
"python_requires": "~=3.9",
|
|
36
36
|
"install_requires": [
|
|
37
|
-
"aws-cdk-lib>=2.
|
|
38
|
-
"aws-cdk.aws-apigatewayv2-alpha>=2.1.0.a0, <3.0.0",
|
|
39
|
-
"aws-cdk.aws-apigatewayv2-integrations-alpha>=2.1.0.a0, <3.0.0",
|
|
37
|
+
"aws-cdk-lib>=2.232.0, <3.0.0",
|
|
40
38
|
"constructs>=10.0.5, <11.0.0",
|
|
41
|
-
"jsii>=1.
|
|
39
|
+
"jsii>=1.124.0, <2.0.0",
|
|
42
40
|
"publication>=0.0.3",
|
|
43
|
-
"typeguard
|
|
41
|
+
"typeguard==2.13.3"
|
|
44
42
|
],
|
|
45
43
|
"classifiers": [
|
|
46
44
|
"Intended Audience :: Developers",
|
|
47
45
|
"Operating System :: OS Independent",
|
|
48
46
|
"Programming Language :: JavaScript",
|
|
49
47
|
"Programming Language :: Python :: 3 :: Only",
|
|
50
|
-
"Programming Language :: Python :: 3.7",
|
|
51
|
-
"Programming Language :: Python :: 3.8",
|
|
52
48
|
"Programming Language :: Python :: 3.9",
|
|
53
49
|
"Programming Language :: Python :: 3.10",
|
|
54
50
|
"Programming Language :: Python :: 3.11",
|