-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (25 loc) · 903 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
25
26
27
28
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
with open("version", "r") as fh:
version = fh.read()
setup(
name='airflow-providers-aliyun-rocketmq',
version=version,
description='Airflow x Aliyun RocketMQ',
long_description=long_description,
long_description_content_type='text/markdown',
entry_points={
"apache_airflow_provider": [
"provider_info=aliyun_rocketmq_provider.__init__:get_provider_info"
]
},
license='Apache License 2.0',
packages=['aliyun_rocketmq_provider', 'aliyun_rocketmq_provider.hooks'],
install_requires=['apache-airflow>=2.0', 'mq-http-sdk>=1.0.3'],
setup_requires=['setuptools', 'wheel'],
author='Ed__xu__Ed',
author_email='[email protected]',
url='https://github.com/Ed-XCF/airflow-providers-aliyun-rocketmq',
python_requires='>=3.6',
)