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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: cloudstructs
3
- Version: 0.6.37
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.7
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~=67.3.2", "wheel~=0.40"]
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"
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.6.37",
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.6.37.jsii.tgz"
29
+ "cloudstructs@0.10.0.jsii.tgz"
30
30
  ],
31
31
  "cloudstructs": [
32
32
  "py.typed"
33
33
  ]
34
34
  },
35
- "python_requires": "~=3.7",
35
+ "python_requires": "~=3.9",
36
36
  "install_requires": [
37
- "aws-cdk-lib>=2.1.0, <3.0.0",
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.83.0, <2.0.0",
39
+ "jsii>=1.124.0, <2.0.0",
42
40
  "publication>=0.0.3",
43
- "typeguard~=2.13.3"
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",