-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.cfg
115 lines (103 loc) · 2.16 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
[metadata]
name = singlestoredb
version = 1.7.2
description = Interface to the SingleStoreDB database and workspace management APIs
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/singlestore-labs/singlestoredb-python
author = SingleStore
author_email = [email protected]
license = Apache-2.0
license_files = LICENSE
classifiers =
Development Status :: 5 - Production/Stable
License :: OSI Approved :: Apache Software License
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Topic :: Database
[options]
packages = find:
install_requires =
PyJWT
build
parsimonious
requests
setuptools
sqlparams
wheel
tomli>=1.1.0;python_version < '3.11'
python_requires = >=3.8
include_package_data = True
tests_require =
coverage
pytest
pandas
[options.packages.find]
exclude =
docs*
resources*
examples*
licenses*
[options.entry_points]
pytest11 =
singlestoredb = singlestoredb.pytest
[options.extras_require]
dataframe =
ibis-singlestoredb
dbt =
dbt-singlestore
ed22519 =
PyNaCl>=1.4.0
gssapi =
gssapi
ibis =
ibis-singlestoredb
kerberos =
gssapi
pytest =
pytest
rsa =
cryptography
sqlalchemy =
sqlalchemy-singlestoredb>=1.0.0
[options.package_data]
* =
*.typed
*.sql
*.csv
[tool:pytest]
markers =
management
[flake8]
exclude =
docs/*
resources/*
licenses/*
max-complexity = 35
max-line-length = 90
per-file-ignores =
singlestoredb/__init__.py:F401
singlestoredb/fusion/__init__.py:F401
singlestoredb/fusion/grammar.py:E501
singlestoredb/http/__init__.py:F401
singlestoredb/management/__init__.py:F401
singlestoredb/mysql/__init__.py:F401
[mypy]
check_untyped_defs = true
disallow_any_generics = true
disallow_incomplete_defs = true
disallow_untyped_defs = true
no_implicit_optional = true
warn_redundant_casts = true
warn_unused_ignores = false
[mypy-testing.*]
disallow_untyped_defs = false
[mypy-tests.*]
disallow_untyped_defs = false
[coverage:run]
source_pkgs = singlestoredb
[coverage:report]
omit =
setup.py
*/tests/*
*/docs/*