forked from Pyhass/Pyhiveapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
68 lines (57 loc) · 1.5 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
[metadata]
name = pyhiveapi
description = A Python library to interface with the Hive API
keywords = Hive API Library
license = MIT
author = Rendili
author_email = [email protected]
url = https://github.com/Pyhive/pyhiveapi
project_urls =
Source = https://github.com/Pyhive/Pyhiveapi
Issue tracker = https://github.com/Pyhive/Pyhiveapi/issues
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
[options]
package_dir =
= pyhiveapi
packages = find:
python_requires = >=3.6.*
[options.packages.find]
where = pyhiveapi
[build-system]
requires = ["setuptools>=40.6.2", "wheel", "unasync"]
build-backend = "setuptools.build_meta"
[bdist_wheel]
universal = 1
[settings]
multi_line_output = 3
include_trailing_comma = True
known_third_party = aiohttp,boto3,botocore,pyquery,requests,setuptools,six,urllib3
[tool.isort]
profile = "black"
[flake8]
exclude = .git,lib,deps,build,test
doctests = True
# To work with Black
# E501: line too long
# D401: mood imperative
# W503: line break before binary operator
ignore =
E501,
D401,
W503
[mypy]
python_version = 3.8
show_error_codes = true
ignore_errors = true
follow_imports = silent
ignore_missing_imports = true
warn_incomplete_stub = true
warn_redundant_casts = true
warn_unused_configs = true