-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
44 lines (42 loc) · 1.46 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
38
39
40
41
42
43
44
# Copyright 2022 DataRobot, Inc. and its affiliates.
#
# All rights reserved.
#
# This is proprietary source code of DataRobot, Inc. and its affiliates.
#
# Released under the terms of DataRobot Tool and Utility Agreement.
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
"""Perform the package airflow-provider-datarobot setup."""
setup(
name='airflow-provider-datarobot',
version="0.0.9",
description='DataRobot Airflow provider.',
long_description=long_description,
long_description_content_type='text/markdown',
entry_points={
"apache_airflow_provider": ["provider_info=datarobot_provider.__init__:get_provider_info"]
},
license='DataRobot Tool and Utility Agreement',
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"License :: Other/Proprietary License",
],
packages=[
'datarobot_provider',
'datarobot_provider.hooks',
'datarobot_provider.sensors',
'datarobot_provider.operators',
],
install_requires=['apache-airflow>=2.3.0', 'datarobot>=3.3.1'],
setup_requires=['setuptools', 'wheel'],
author='DataRobot',
author_email='[email protected]',
url='https://www.datarobot.com/',
python_requires='~=3.7',
)