Metadata-Version: 2.1
Name: core-aws-cdk
Version: 1.0.0
Summary: This project contains the commons elements to create infrastructure in AWS using AWS CDK...
Author-email: Alejandro Cora González <alek.cora.glez@gmail.com>
Maintainer: Alejandro Cora González
License: MIT
Project-URL: Homepage, https://gitlab.com/bytecode-solutions/infrastructure/core-aws-cdk
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.11
Classifier: Intended Audience :: Developers
Classifier: Topic :: Utilities
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: aws-cdk-lib==2.110.0
Requires-Dist: aws-cdk.aws-lambda-python-alpha==2.100.0a0
Requires-Dist: core-tests
Provides-Extra: test

# core-aws-cdk
___________________________________________________________________________________________________________________

This project contains the commons elements to create infrastructure
in AWS using AWS CDK...

## Execution Environment

### Install libraries
```commandline
pip install --upgrade pip 
pip install virtualenv
```

### Create the Python Virtual Environment.
```commandline
virtualenv --python=python3.11 .venv
```

### Activate the Virtual Environment.
```commandline
source .venv/bin/activate
```

### Install required libraries.
```commandline
pip install .
```

### Check tests and coverage...
```commandline
python manager.py run-test
python manager.py run-coverage
```
