-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.cfg
81 lines (71 loc) · 1.8 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-hex
url = https://github.com/hex-inc/airflow-provider-hex
version = file: VERSION.txt
author = Pedram Navid
author_email = [email protected]
description = Apache Airflow Hex provider containing Hooks and Operators
long_description = file: README.md
long_description_content_type = text/markdown
license = Apache License 2.0
classifiers =
Environment :: Web Environment
Intended Audience :: Developers
Operating System :: OS Independent
Programming Language :: Python
project_urls =
Source Code=https://github.com/hex-inc/airflow-provider-hex
Homepage=https://github.com/hex-inc/airflow-provider-hex
Changelog=https://github.com/hex-inc/airflow-provider-hex/blob/main/CHANGELOG.md
[options]
python_requires = >=3.7
packages = find_namespace:
include_package_data = true
install_requires =
apache-airflow>=2.2.0
requests>=2
importlib-metadata>=4.8.1
typing-extensions>=3.10.0.2
zip_safe = false
[options.extras_require]
dev =
mypy>=0.8
pytest
pre-commit
flake8
isort
types-requests
black
pytest-mock
requests-mock
[options.packages.find]
include =
airflow_provider_hex*
[options.entry_points]
apache_airflow_provider=
provider_info=airflow_provider_hex:get_provider_info
[tool:pytest]
testpaths = tests
addopts = --tb=short
[flake8]
exclude = venv/*,tox/*,specs/*
ignore = E123,E128,E266,E402,W503,E731,W601
max-line-length = 88
[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
no_implicit_optional = True
warn_redundant_casts = True
show_error_context = True
color_output = True
[mypy-airflow.*]
ignore_missing_imports = True
[tool.black]
line-length = 88
target-version = ['py39']