-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathsetup.py
24 lines (22 loc) · 790 Bytes
/
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
from setuptools import setup
with open("README.md") as fh:
long_description = fh.read()
setup(
name="airflow-livy-operators",
version="0.6",
author="Vadim Panov",
author_email="[email protected]",
description="Lets Airflow DAGs run Spark jobs via Livy: sessions and/or batches.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/panovvv/airflow-livy-operators",
license="MIT License",
packages=["airflow_livy"],
package_dir={"airflow_livy": "airflow_home/plugins/airflow_livy"},
python_requires=">=3.7",
classifiers=[
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
)