forked from xlcnd/isbnlib
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
73 lines (63 loc) · 1.56 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
[metadata]
license=LGPL v3
license_file=LICENSE-LGPL-3.0.txt
platforms=any
description=Extract, clean, transform, hyphenate and metadata for ISBNs (International Standard Book Number).
long_description=file: README.rst
keywords=ISBN, metadata, World_Catalogue, Google_Books, Wikipedia, Open_Library, BibTeX, EndNote, RefWorks, MSWord, opf, BibJSON
classifier=
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)
Operating System :: OS Independent
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
Topic :: Text Processing :: General
Topic :: Software Development :: Libraries :: Python Modules
[bdist_wheel]
universal=1
[flake8]
max-line-length=88
exclude=*/test/*,*/_data/*
max-complexity=11
ignore=
E501,
W503,
E203,
D202,
W504,
C901,
D105,
D107,
D204,
E126,
E722,
E741,
I100,
I101,
I201,
N802,
N806,
S001,
W503
extend-ignore=E203,S001
[tool:pytest]
addopts = --cov-config=setup.cfg
testpaths =
isbnlib/test
markers =
network: tests requiring network connection
[coverage:run]
source = isbnlib
branch = True
omit = isbnlib/test/*
[coverage:report]
fail_under = 90
show_missing = True
skip_covered = True