Files
e3-aws/setup.py
Pierre Trespeuch 3b0f8a2aec Add a troposphere module
This module provides helper classes to build an AWS CloudFormation stack
with troposphere and deploy it.
2020-11-20 10:20:28 +01:00

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"]},
)