-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.cfg
95 lines (84 loc) · 1.86 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
[metadata]
name = httpx-gssapi
description = A Python GSSAPI authentication handler for HTTPX
author = Ian Cordasco, Cory Benfield, Michael Komitee, Robbie Harwood, Roger Aiudi
author_email = [email protected]
url = https://github.com/pythongssapi/httpx-gssapi
license = MIT
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
License :: OSI Approved :: ISC License (ISCL)
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
Topic :: Software Development :: Libraries :: Python Modules
keywords =
httpx
gssapi
kerberos
[options]
include_package_data = True
python_requires = >=3.9
packages = httpx_gssapi
install_requires =
httpx>=0.16,<0.29
gssapi
[options.extras_require]
test =
pytest
k5test
all =
%(test)s
[options.package_data]
* =
LICENSE
AUTHORS
[coverage:run]
source = .
include = httpx_gssapi/*,test_httpx_gssapi.py
omit = httpx_gssapi/_version.py
[coverage:html]
directory = coverage/
[coverage:report]
exclude_lines =
pragma: no cover
if TYPE_CHECKING:
if __name__ == .__main__.:
pass
include = httpx_gssapi/*,test_httpx_gssapi.py
omit = httpx_gssapi/_version.py
[build_sphinx]
source-dir = doc/
build-dir = doc/build/
[flake8]
max-line-length = 80
filename = httpx_gssapi/**.py
exclude =
tests,
build,
dist,
venv,
.tox,
*.egg*,
coverage,
doc,
httpx_gssapi/_version.py
[tox:tox]
envlist = py36, py37, py38, py39, py310
[testenv]
deps =
.
pytest
k5test
commands =
python -m pytest
[versioneer]
VCS = git
style = pep440
versionfile_source = httpx_gssapi/_version.py
versionfile_build = httpx_gssapi/_version.py
tag_prefix = v
parentdir_prefix = httpx_gssapi-