-
Notifications
You must be signed in to change notification settings - Fork 56
/
setup.cfg
55 lines (51 loc) · 1.79 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
[metadata]
name = airflow-provider-great-expectations
version = attr: great_expectations_provider.__version__
url = https://github.com/astronomer/airflow-provider-great-expectations
author = Great Expectations & Astronomer
author_email = [email protected]
description = An Apache Airflow provider for Great Expectations
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
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
project_urls =
Source Code=https://github.com/astronomer/airflow-provider-great-expectations
Changelog=https://github.com/astronomer/airflow-provider-great-expectations/blob/main/CHANGELOG.md
[options]
python_requires = >=3.6
packages = find_namespace:
include_package_data = true
install_requires =
apache-airflow>=2.1
great-expectations<1.0.0, >=0.15.34
sqlalchemy>=1.3.16
[options.extras_require]
tests =
parameterized
pytest
pytest-mock
apache-airflow-providers-snowflake>=3.3.0
[options.entry_points]
apache_airflow_provider=
provider_info=great_expectations_provider.__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 = 119