-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.cfg
90 lines (76 loc) · 2.04 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
82
83
84
85
86
87
88
89
90
[metadata]
name = dbt_firebolt
version = attr: dbt.adapters.firebolt.__version__
description = The Firebolt adapter plugin for dbt (data build tool)
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/firebolt-db/dbt-firebolt
author = Firebolt
author_email = support@firebolt.io
license = Apache-2.0
license_files = LICENSE
classifiers =
License :: OSI Approved :: Apache Software License
Operating System :: OS Independent
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
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 =
Bug Tracker = https://github.com/firebolt-db/dbt-firebolt/issues
[options]
packages = find_namespace:
install_requires =
dbt-adapters>=1.0,<2.0
dbt-core>=1.8.0
firebolt-sdk>=1.5.0
pydantic>=0.23
python_requires = >=3.8
include_package_data = True
package_dir =
= .
[options.packages.find]
where = .
include = dbt, dbt.*
[options.extras_require]
dev =
allure-pytest==2.*
dbt-tests-adapter~=1.6
mypy==1.4.1
pre-commit==3.5.0
pytest==7.*
[black]
python-version = 3.9
[flake8]
max-line-length = 88
per-file-ignores = __init__.py:F401,Q000, test_utils.py:E501
ignore = E203, W503
ban-relative-imports = True
inline-quotes = '
[mypy]
plugins = pydantic.mypy
disallow_untyped_defs = True
show_error_codes = True
files = dbt/adapters
namespace_packages = True
explicit_package_bases = True
[mypy-agate]
ignore_missing_imports = True
[mypy-dbt.adapters.base.*]
ignore_missing_imports = True
[mypy-dbt.adapters.sql]
ignore_missing_imports = True
[mypy-dbt.contracts.*]
ignore_missing_imports = True
[mypy-dbt.dataclass_schema]
ignore_missing_imports = True
[mypy-dbt.exceptions]
ignore_missing_imports = True
[mypy-dbt.utils]
ignore_missing_imports = True
[pydantic-mypy]
warn_required_dynamic_aliases = True
warn_untyped_fields = True