forked from aws-samples/cdk-lambda-powertools-python-layer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.projenrc.js
25 lines (24 loc) · 968 Bytes
/
.projenrc.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
const { awscdk } = require('projen');
const project = new awscdk.AwsCdkConstructLibrary({
authorName: 'Amazon Web Services',
authorUrl: 'https://aws.amazon.com',
authorOrganization: true,
keywords: ['aws', 'cdk', 'powertools', 'python', 'layer', 'lambda', 'devax'],
cdkVersion: '2.2.0',
defaultReleaseBranch: 'main',
majorVersion: 2,
name: 'cdk-lambda-powertools-python-layer',
repositoryUrl: 'https://github.com/aws-samples/cdk-lambda-powertools-python-layer.git',
description: 'A lambda layer for AWS Powertools for python',
devDeps: [
'@types/[email protected]', // pin until breaking changes is resolved: https://github.com/DefinitelyTyped/DefinitelyTyped/discussions/60310
],
github: false,
publishToPypi: {
distName: 'cdk-lambda-powertools-python-layer',
module: 'cdk_lambda_powertools_python_layer',
},
license: 'MIT-0',
copyrightOwner: 'Amazon.com, Inc. or its affiliates. All Rights Reserved.',
});
project.synth();