-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.cfg
101 lines (90 loc) · 2.04 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
[metadata]
name = thriftpy2-httpx-client
description = HTTPX Client for ThriftPy2
long_description = file: README.rst
author = Roger Aiudi
author_email = [email protected]
url = https://github.com/aiudirog/ThriftPy2-HTTPX-Client
license = MIT
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: 3.13
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
Topic :: Software Development :: Libraries :: Python Modules
keywords =
thrift
async
asyncio
httpx
[options]
python_requires = >=3.7
include_package_data = True
packages = find:
install_requires =
thriftpy2>=0.4.11
httpx>=0.16,<0.29
[options.extras_require]
test =
pytest
pytest-asyncio
urllib3
all =
%(test)s
[options.packages.find]
exclude =
tests
[coverage:run]
source = .
include = thriftpy2_httpx_client/*,tests/*
omit = thriftpy2_httpx_client/_version.py
[coverage:html]
directory = coverage/
[coverage:report]
exclude_lines =
pragma: no cover
if TYPE_CHECKING:
if __name__ == .__main__.:
pass
include = thriftpy2_httpx_client/*,tests/*
omit = thriftpy2_httpx_client/_version.py
[build_sphinx]
source-dir = doc/
build-dir = doc/build/
[flake8]
max-line-length = 80
filename = **.py
exclude =
tests,
build,
dist,
venv,
.tox,
*.egg*,
coverage,
doc,
*/_version.py,
versioneer.py
[tox:tox]
envlist = py39, py310, py311, py312, py313, pypy3
[testenv]
deps =
.
pytest
pytest-asyncio
urllib3
commands =
python -m pytest
[versioneer]
VCS = git
style = pep440
versionfile_source = thriftpy2_httpx_client/_version.py
versionfile_build = thriftpy2_httpx_client/_version.py
tag_prefix = v
parentdir_prefix = thriftpy2_httpx_client-