-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.cfg
74 lines (65 loc) · 1.99 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
[metadata]
name = databend_sqlalchemy
version = attr: databend_sqlalchemy.VERSION
description = Sqlalchemy adapter for Databend
long_description = file: README.rst
long_description_content_type = text/markdown
url = https://github.com/datafuselabs/databend-sqlalchemy
author = Databend Cloud
author_email = hanshanjie@datafuselabs.com
license = Apache-2.0
license_file = 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.7
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/datafuselabs/databend-sqlalchemy
[options]
packages = find:
install_requires =
databend-driver>=0.16.0
sqlalchemy>=1.4
python_requires = >=3.7
package_dir =
= .
[options.packages.find]
where = .
[options.entry_points]
sqlalchemy.dialects =
databend = databend_sqlalchemy.databend_dialect:DatabendDialect
databend.databend = databend_sqlalchemy.databend_dialect:DatabendDialect
[options.extras_require]
dev =
devtools==0.7.0
mock==4.0.3
pre-commit==2.15.0
pytest==8.1.1
pytest-cov==3.0.0
pytest-xdist==3.5.0
sqlalchemy-stubs==0.4
superset = apache_superset>=1.4.1
[flake8]
max-line-length = 88
per-file-ignores = __init__.py:F401
ignore = E203, W503
ban-relative-imports = True
inline-quotes = "
[tool:pytest]
addopts= --tb native -n4 -v -r fxX --maxfail=25 -p no:warnings
python_files=tests/*test_*.py
# python_functions=test_round_trip_same_named_column
# log_level=DEBUG
[sqla_testing]
requirement_cls=databend_sqlalchemy.requirements:Requirements
profile_file = .profiles.txt
[db]
default=databend://databend:databend@localhost:8000/default?sslmode=disable