forked from robinhood/airflow-prometheus-exporter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
52 lines (46 loc) · 1.45 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
45
46
47
48
49
50
51
52
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""The setup script."""
from setuptools import setup, find_packages
with open('README.md', encoding='utf-8') as readme_file:
readme = readme_file.read()
install_requirements = [
'apache-airflow>=2.2.4',
'prometheus_client>=0.4.2',
],
extras_require={
'dev': [
'bumpversion',
'tox',
'twine',
]
}
setup(
author='Robinhood Markets, Inc.',
author_email='[email protected]',
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
description='Prometheus Exporter for Airflow Metrics',
install_requires=install_requirements,
extras_require=extras_require,
license='BSD 3-Clause',
long_description=readme,
long_description_content_type='text/markdown',
keywords='airflow_prometheus_exporter',
name='airflow_prometheus_exporter',
packages=find_packages(include=['airflow_prometheus_exporter']),
include_package_data=True,
url='https://github.com/Zomato/airflow-prometheus-exporter',
version='2.0.0',
entry_points={
'airflow.plugins': [
'AirflowPrometheus = airflow_prometheus_exporter.prometheus_exporter:AirflowPrometheusPlugin'
]
},
)