forked from astronomer/airflow-provider-kafka
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
81 lines (71 loc) · 1.99 KB
/
setup.cfg
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
[metadata]
name = airflow-provider-kafka
version = attr: airflow_provider_kafka.__version__
url = https://github.com/astronomer/airflow-provider-kafka
author = Dylan Storey
author_email = [email protected]
description = Apache Airflow Kafka provider containing Deferrable Operators & Sensors.
long_description = file: README.md
long_description_content_type = text/markdown
license = Apache License 2.0
license_files = LICENSE.txt
classifiers =
Environment :: Web Environment
Intended Audience :: Developers
License :: OSI Approved :: Apache Software License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
project_urls =
Source Code=https://github.com/astronomer/airflow-provider-kafka
Homepage=https://github.com/astronomer/airflow-provider-kafka
Changelog=https://github.com/astronomer/airflow-provider-kafka/blob/main/CHANGELOG.md
[options]
python_requires = >=3.7
packages = find:
include_package_data = true
install_requires =
apache-airflow>=2.2.0
asgiref
confluent-kafka>=1.8.2
zip_safe = false
[options.extras_require]
dev =
mypy>=0.800
pytest
pre-commit
[options.packages.find]
include =
airflow_provider_kafka*
[tool:pytest]
testpaths = tests
addopts = --tb=short
[flake8]
exclude = venv/*,tox/*,specs/*
ignore = E123,E128,E266,E402,W503,E731,W601
max-line-length = 119
[isort]
profile = black
multi_line_output = 3
[mypy]
warn_unused_ignores = True
namespace_packages = True
explicit_package_bases = True
pretty = True
show_error_codes = True
ignore_missing_imports = True
no_implicit_optional = True
warn_redundant_casts = True
show_error_context = True
color_output = True
[mypy-airflow.*]
ignore_missing_imports = True
[mypy-asgiref.*]
ignore_missing_imports = True
[tool.black]
line-length = 110
skip-string-normalization = true
target-version = ['py39']