-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
52 lines (48 loc) · 1.47 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
from setuptools import find_packages, setup
with open('README.md', 'rb') as f:
LONG_DESCRIPTION = f.read().decode('utf-8')
setup(
name="airflow-queue-stats",
version="0.1.4",
description='An airflow plugin for viewing queue statistics.',
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
keywords='airflow airflow-docker celery flower worker queue plugin',
url='https://github.com/airflowdocker/airflow-queue-stats',
license='MIT',
author='Hunter Senft-Grupp',
author_email='[email protected]',
package_dir={
"": "src"
},
packages=find_packages("src"),
python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*',
install_requires=[
'apache-airflow[celery]',
],
extras_require={
'testing': [
'pytest',
'pytest-cov',
],
'linting': [
'isort',
'black',
]
},
entry_points={
"airflow.plugins": [
"queue_stats = airflow_queue_stats.plugin:QueueStatsPlugin"
]
},
)