-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathsetup.cfg
More file actions
99 lines (92 loc) · 2.48 KB
/
setup.cfg
File metadata and controls
99 lines (92 loc) · 2.48 KB
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
99
[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 = 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.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.5.1
anyio>=3.7.1
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.5.5
trio>=0.22.0
truststore>=0.10;python_version>="3.10"
python_requires = >=3.9
include_package_data = True
package_dir =
= src
[options.packages.find]
where = src
[options.extras_require]
ciso8601 =
ciso8601==2.3.3
dev =
allure-pytest==2.*
devtools==0.12.2
mypy>=1,<2
pre-commit==3.5.0
psutil==7.2.2
pyfakefs>=4.5.3,<=5.6.0
pytest==8.4.1
pytest-cov==7.1.0
pytest-httpx>=0.13.0
pytest-mock==3.15.1
pytest-timeout==2.4.0
pytest-trio==0.8.0
pytest-xdist==3.8.0
trio-typing[mypy]>=0.6,<0.11
types-cryptography==3.3.23.2
docs =
sphinx>=7,<10
sphinx-rtd-theme>=2,<4
[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