-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
37 lines (34 loc) · 1.08 KB
/
setup.py
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
26
27
28
29
30
31
32
33
34
35
36
37
from setuptools import setup, find_packages
from distutils.util import convert_path
with open("README.md", "r") as fh:
long_description = fh.read()
main_ns = {}
ver_path = convert_path("ecs_exec/version.py")
with open(ver_path) as ver_file:
exec(ver_file.read(), main_ns)
setup(
name="ecs-exec",
version=main_ns["__version__"],
author="Ringier Tech",
author_email="[email protected]",
description="Simple script to allow one to execute commands on AWS ECS Fargate once ECS exec has been correctly configured.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/RingierIMU/ecs-exec",
packages=find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
python_requires=">=3",
install_requires=[
"boto3",
"argparse",
],
entry_points={
"console_scripts": [
"ecs-exec=ecs_exec.__main__:main",
],
},
)