-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
52 lines (45 loc) · 1.03 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
[metadata]
name = xsbe
author = Philip Couling
author_email = [email protected]
url = https://github.com/couling/XSBE
description = Tool for parsing XML using example XML documents as a schema
long_description = file: README.md, LICENCE.md
long_description_content_type = text/markdown
platform = any
license = MIT
classifiers =
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
[options]
zip_safe = True
include_package_data = False
package_dir =
=source
packages: find:
python_requires >= 3.6
[options.packages.find]
where = source
exclude = tests*
[options.extras_require]
tests =
pytest
[pylint.MASTER]
extension-pkg-whitelist=pydantic
[pylint.'MESSAGES CONTROL']
disable=missing-module-docstring,
missing-class-docstring,
missing-function-docstring,
too-few-public-methods,
logging-fstring-interpolation,
no-member
[pylint.FORMAT]
max-line-length=120
[pylint.BASIC]
good-names=ex,
i,
j,
x,
y,
fd,