-
Notifications
You must be signed in to change notification settings - Fork 43
/
setup.cfg
97 lines (88 loc) · 2.52 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
[metadata]
name = soapfish
version = 0.6.0.dev0
url = http://soapfish.org/
download_url = http://soapfish.org/releases/
author = Damian Powązka
author_email = [email protected]
maintainer = Felix Schwarz
maintainer_email = [email protected]
description = A SOAP library for Python
long_description = file: README.md, AUTHORS.md, CHANGES.md, TODO.md
long_description_content_type = text/markdown
keywords = soap, wsdl, xsd, xml, schema, web service
obsoletes = soapbox
license = BSD-3-Clause
classifiers =
Development Status :: 4 - Beta
Environment :: Console
Environment :: Web Environment
Framework :: Django
Framework :: Django :: 3.2
Framework :: Django :: 4.0
Framework :: Flask
Intended Audience :: Developers
License :: OSI Approved :: BSD License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: Implementation :: CPython
Topic :: Internet :: WWW/HTTP
Topic :: Software Development :: Libraries :: Python Modules
[options]
zip_safe = false
include_package_data = true
packages = find:
python_requires = >=3.7
install_requires =
httpx
iso8601>=0.1.12
jinja2
lxml
[options.packages.find]
exclude = examples, tests, tests.*
[options.entry_points]
console_scripts =
py2wsdl = soapfish.py2wsdl:main
py2xsd = soapfish.py2xsd:main
wsdl2py = soapfish.wsdl2py:main
xsd2py = soapfish.xsd2py:main
[check-manifest]
ignore = .mailmap
[flake8]
doctests = true
exclude = build,dist,venv,.eggs,.git,.tox,__pycache__
hang-closing = false
ignore = B001,B005,E121,E123,E126,E501,E731,FI1,FI9,W504
per-file-ignores = */migrations/*.py:B950
max-complexity = 20
max-doc-length = 119
max-line-length = 119
select = A5,B0,B3,B9,C,D2,D3,D4,E,F,G,I0,Q0,R1,W
inline-quotes = single
multiline-quotes = single
docstring-quotes = double
no-accept-encodings = true
[isort]
combine_as_imports = true
default_section = THIRDPARTY
include_trailing_comma = true
known_first_party = soapfish
line_length = 119
multi_line_output = 5
use_parentheses = true
[pycodestyle]
exclude = build,dist,venv,.eggs,.git,.tox,__pycache__
hang-closing = false
ignore = E121,E123,E126,E501,E731,W504
max-doc-length = 119
max-line-length = 119
[pydocstyle]
add-ignore = D1
[tool:pytest]
junit_family = xunit2