mirror of
https://github.com/AdaCore/e3-aws.git
synced 2026-02-12 13:02:04 -08:00
This module provides helper classes to build an AWS CloudFormation stack with troposphere and deploy it.
20 lines
626 B
Python
20 lines
626 B
Python
from setuptools import setup, find_packages
|
|
import os
|
|
|
|
# Get e3 version from the VERSION file.
|
|
version_file = os.path.join(os.path.dirname(__file__), "VERSION")
|
|
with open(version_file) as f:
|
|
e3_version = f.read().strip()
|
|
|
|
setup(
|
|
name="e3-aws",
|
|
version=e3_version,
|
|
description="E3 Cloud Formation Extension",
|
|
author="AdaCore's Production Team",
|
|
packages=find_packages(where="src"),
|
|
package_dir={"": "src"},
|
|
install_requires=("botocore", "pyyaml", "troposphere", "e3-core"),
|
|
namespace_packages=["e3"],
|
|
entry_points={"console_scripts": ["e3-aws-assume-role = e3.aws:assume_role_main"]},
|
|
)
|