forked from aelzeiny/airflow-aws-executors
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (29 loc) · 1.07 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
import pathlib
from setuptools import setup
description = "Apache Airflow Executor for AWS ECS, AWS Fargate, and AWS Batch"
try:
with open(str(pathlib.Path.cwd() / "readme.md"), "r") as fh:
long_description = fh.read()
except FileNotFoundError:
long_description = description
setup(
name="airflow-aws-executors",
version="1.1.0",
description=description,
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/aelzeiny/airflow-aws-executors",
author="Ahmed Elzeiny",
author_email="[email protected]",
license="MIT",
keywords=['Apache', 'Airflow', 'AWS', 'Executor', 'Fargate', 'ECS', 'AWS ECS', 'AWS Batch', 'AWS Fargate'],
python_requires='>=3.6.0',
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
],
packages=["airflow_aws_executors"],
include_package_data=True,
install_requires=["boto3", "apache-airflow>=1.10.5", "marshmallow>=3"]
)