-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.cfg
executable file
·98 lines (91 loc) · 2.47 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
91
92
93
94
95
96
97
98
[metadata]
name = firebolt_sdk
version = attr: firebolt.__version__
description = Python SDK for Firebolt
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/firebolt-db/firebolt-sdk
author = Firebolt
author_email = [email protected]
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/firebolt-sdk/issues
[options]
packages = find:
install_requires =
aiorwlock==1.1.0
anyio>=3.7.1,<4.5.0
appdirs>=1.4.4
appdirs-stubs>=0.1.0
async-generator>=1.10
async-property>=0.2.1
cryptography>=3.4.0
httpcore>=0.17.0
httpx[http2]>=0.19.0
pydantic[dotenv]>=1.8.2,<3.0.0
python-dateutil>=2.8.2
readerwriterlock>=1.0.9
sqlparse>=0.4.2
trio>=0.22.0
python_requires = >=3.8
include_package_data = True
package_dir =
= src
[options.packages.find]
where = src
[options.extras_require]
ciso8601 =
ciso8601==2.2.0
dev =
allure-pytest==2.*
devtools==0.7.0
mypy==1.*,<1.10.0
pre-commit==3.5.0
pyfakefs>=4.5.3,<=5.6.0
pytest==7.2.0
pytest-cov==3.0.0
pytest-httpx>=0.13.0
pytest-mock==3.6.1
pytest-timeout==2.1.0
pytest-trio==0.8.0
pytest-xdist==2.5.0
trio-typing[mypy]==0.6.*
types-cryptography==3.3.18
docs =
sphinx==7.*
sphinx-rtd-theme==2.*
[options.package_data]
firebolt = py.typed
[mypy]
disallow_untyped_defs = True
show_error_codes = True
files = src/
plugins = pydantic.mypy
[flake8]
exclude = tests/*
max-line-length = 88
per-file-ignores = __init__.py:F401
ignore =
E203, # Whitespace before ':'. Ignored for black compatibility
W503, # Line break occurred before a binary operator. Ignored for black compatibility
D100, # Missing docstring in public module
D104, # Missing docstring in public package
D105,# Missing docstring in magic method
D107, # Missing docstring in __init__
SC200, # Spelling error in name (e.g. variable, function, class)
ban-relative-imports = True
docstring-convention = google
inline-quotes = "
[tool:pytest]
trio_mode = true