forked from anyscale/airflow-provider-ray
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (34 loc) · 1.34 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
import os
with open("README.md", "r") as fh:
long_description = fh.read()
VERSION = os.environ.get("RAY_PROVIDER_VERSION", "0.2.1")
setup(
name="airflow-provider-ray",
description="An Apache Airflow provider for Ray",
entry_points={
"apache_airflow_provider": [
"provider_info=ray_provider.__init__:get_provider_info"
]
},
long_description=long_description,
long_description_content_type="text/markdown",
license="Apache License 2.0",
version=VERSION,
packages=find_packages(include=["*"]),
zip_safe=False,
install_requires=["apache-airflow>=2.0",
"pandas>=1.0.0",
"filelock>=3.0.0",
"ray>=1.3.0",
"apache-airflow-providers-http"],
setup_requires=["setuptools", "wheel"],
extras_require={},
author="Rob Deeb, Richard Liaw, Daniel Imberman, Pete DeJoy",
author_email="rob@astronomer.io, daniel@astronomer.io, rliaw@anyscale.com, pete@astronomer.io",
maintainer="Rob Deeb, Richard Liaw, Daniel Imberman, Pete DeJoy",
maintainer_email="rob@astronomer.io, daniel@astronomer.io, rliaw@anyscale.com, pete@astronomer.io",
keywords=["ray", "distributed", "compute", "airflow"],
python_requires=">=3.7",
include_package_data=True,
)