-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.cfg
73 lines (66 loc) · 1.88 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
[metadata]
name = firebolt_sqlalchemy
version = attr: firebolt_db.__version__
description = Sqlalchemy adapter for Firebolt
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/firebolt-db/firebolt-sqlalchemy
author = Firebolt
author_email = [email protected]
license = Apache-2.0
license_files = LICENSE
classifiers =
License :: OSI Approved :: Apache Software License
License :: OSI Approved :: MIT 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
download_url = https://github.com/firebolt-db/firebolt-sqlalchemy/archive/refs/tags/0.0.9.tar.gz
project_urls =
Bug Tracker = https://github.com/firebolt-db/firebolt-sqlalchemy
[options]
packages = find:
install_requires =
firebolt-sdk>=1.5.0
sqlalchemy>=1.0.0
python_requires = >=3.8
package_dir =
= src
[options.packages.find]
where = src
[options.entry_points]
sqlalchemy.dialects =
firebolt = firebolt_db.firebolt_dialect:FireboltDialect
asyncio.firebolt = firebolt_db.firebolt_async_dialect:AsyncFireboltDialect
[options.extras_require]
dev =
allure-pytest==2.*
devtools==0.7.0
greenlet==2.0.2
mock==4.0.3
mypy==0.910
pre-commit==3.5.0
pytest==7.2.0
pytest-cov==3.0.0
pytest-trio==0.8.0
sqlalchemy-stubs==0.4
trio-typing==0.9.0
[mypy]
disallow_untyped_defs = True
show_error_codes = True
plugins = sqlmypy
files = src/
[pydantic-mypy]
warn_required_dynamic_aliases = True
warn_untyped_fields = True
[flake8]
max-line-length = 88
per-file-ignores = __init__.py:F401
ignore = E203, W503
ban-relative-imports = True
inline-quotes = "