-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.cfg
65 lines (58 loc) · 1.84 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
[metadata]
name = airflow-provider-fivetran-async
version = attr: fivetran_provider_async.__version__
url = https://github.com/astronomer/airflow-provider-fivetran-async
author = Astronomer & Fivetran
author_email = [email protected]
description = A Fivetran async provider for Apache Airflow
long_description = file: README.md
long_description_content_type = text/markdown
license = Apache License 2.0
license_files = LICENSE.txt
classifiers =
Development Status :: 5 - Production/Stable
Environment :: Web Environment
Framework :: Apache Airflow
Framework :: Apache Airflow :: Provider
Intended Audience :: Developers
License :: OSI Approved :: Apache Software License
Operating System :: OS Independent
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
project_urls =
Source Code=https://github.com/astronomer/airflow-provider-fivetran-async
Changelog=https://github.com/astronomer/airflow-provider-fivetran-async/blob/main/CHANGELOG.md
Bug Tracker = https://github.com/astronomer/airflow-provider-fivetran-async/issues
[options]
python_requires = >=3.8
packages = find_namespace:
include_package_data = true
install_requires =
apache-airflow>=2.2.0
aiohttp
asgiref
requests
[options.extras_require]
tests =
mypy
types-requests
parameterized
pytest
pytest-asyncio
pytest-cov
requests_mock
openlineage =
openlineage-airflow>=0.19.2
all =
openlineage-airflow>=0.19.2
[options.entry_points]
apache_airflow_provider=
provider_info=fivetran_provider_async.__init__:get_provider_info
[flake8]
enable-extensions=G
exclude = venv/*,tox/*,specs/*
ignore = E123,E128,E266,RST303,E402,W503,E731,W601,TYP001
max-line-length = 110