-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.cfg
71 lines (65 loc) · 1.67 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
[metadata]
name = firebolt_cli
version = attr: firebolt_cli.__version__
description = CLI for Firebolt
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/firebolt-db/firebolt-cli
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-cli/issues
[options]
packages = find:
install_requires =
Pygments>=2.7.4
appdirs==1.4.4
click>=8.1.2
firebolt-ingest>=0.3.0
firebolt-sdk>=1.0.0a,<1.1.0
keyring>=23.5.0
prompt-toolkit>=3.0.29
tabulate>=0.8.9
types-Pygments>=2.9.15
types-tabulate>=0.8.5
urllib3>=1.25.8
python_requires = >=3.8
include_package_data = True
package_dir =
= src
[options.packages.find]
where = src
[options.entry_points]
console_scripts =
firebolt = firebolt_cli.main:main
[options.extras_require]
dev =
appdirs-stubs==0.1.0
mypy==0.910
pre-commit==2.15.0
pyfakefs==4.5.3
pytest==6.2.5
pytest-cov>=3.0.0
pytest-mock>=3.6.1
[mypy]
disallow_untyped_defs = True
show_error_codes = True
files = src/
[flake8]
max-line-length = 88
per-file-ignores = __init__.py:F401
ignore = E203, W503
ban-relative-imports = True
inline-quotes = "