-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
83 lines (71 loc) · 1.7 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
[metadata]
name = aiohappybase
description = Asyncio fork of HappyBase
long_description = file: README.rst
author = Roger Aiudi
author_email = [email protected]
url = https://github.com/python-happybase/aiohappybase
license = MIT
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
Topic :: Database
Topic :: Software Development :: Libraries :: Python Modules
keywords =
hbase
thrift
async
asyncio
happybase
[options]
include_package_data = True
packages = find:
py_modules =
happybase
[options.packages.find]
exclude =
tests
[options.extras_require]
http = thriftpy2-httpx-client
[coverage:run]
source = .
include = aiohappybase/*,tests/*
omit = aiohappybase/_version.py
[coverage:html]
directory = coverage/
[coverage:report]
exclude_lines =
pragma: no cover
if TYPE_CHECKING:
if __name__ == .__main__.:
pass
include = aiohappybase/*,tests/*
omit = aiohappybase/_version.py
[build_sphinx]
source-dir = doc/
build-dir = doc/build/
[flake8]
max-line-length = 80
filename = *happybase*/**.py
exclude = build,dist,venv,.tox,*.egg*,coverage,doc
[tox:tox]
envlist = py36, py37, py38, py39
[testenv]
deps = -rtest-requirements.txt
commands =
python -m pytest
AIOHAPPYBASE_COMPAT=0.90 python -m pytest
[tool:pytest]
junit_family = xunit1
[versioneer]
VCS = git
style = pep440
versionfile_source = aiohappybase/_version.py
versionfile_build = aiohappybase/_version.py
tag_prefix = v
parentdir_prefix = aiohappybase-