2018-02-14 15:53:22 +01:00
|
|
|
from setuptools import setup, find_packages
|
2020-06-09 10:26:30 +02:00
|
|
|
import os
|
2018-02-14 15:53:22 +01:00
|
|
|
|
2020-06-09 10:26:30 +02:00
|
|
|
# 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()
|
2018-02-14 15:53:22 +01:00
|
|
|
|
|
|
|
|
setup(
|
2020-04-02 09:55:50 +02:00
|
|
|
name="e3-aws",
|
2020-06-09 10:26:30 +02:00
|
|
|
version=e3_version,
|
2018-02-14 15:53:22 +01:00
|
|
|
description="E3 Cloud Formation Extension",
|
|
|
|
|
author="AdaCore's Production Team",
|
2020-03-13 09:03:39 +01:00
|
|
|
packages=find_packages(where="src"),
|
|
|
|
|
package_dir={"": "src"},
|
2020-10-26 09:46:17 +01:00
|
|
|
install_requires=("botocore", "pyyaml", "troposphere", "e3-core"),
|
2020-04-02 09:55:50 +02:00
|
|
|
namespace_packages=["e3"],
|
|
|
|
|
entry_points={"console_scripts": ["e3-aws-assume-role = e3.aws:assume_role_main"]},
|
|
|
|
|
)
|