-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
77 lines (66 loc) · 1.69 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
[metadata]
name = airfactory
version = attr: airfactory.__version__
url = https://github.com/tsocial/airlake-factory
author = TuanCam
author_email = nguyenvantuan140397@gmail.com
description = Apache Airflow Dag Factory - Yaml to DAG
license = Apache License 2.0
license_files = LICENSE
classifiers =
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.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
project_urls =
Source Code=https://github.com/tsocial/airlake-factory
Homepage=https://github.com/tsocial/airlake-factory
[options]
python_requires = >=3.9
packages = find:
include_package_data = true
install_requires =
apache-airflow
zip_safe = false
[options.extras_require]
dev =
mypy>=0.800
pytest
pytest-cov
pre-commit
requests-mock
[options.packages.find]
include =
airfactory*
[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