-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.cfg
62 lines (57 loc) · 1.68 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
[metadata]
name = simple-manga-downloader
version = attr: simple_manga_downloader.__version__
author = Kanjirito
author_email = [email protected]
license = GPLv3
url = https://github.com/Kanjirito/simple-manga-downloader
project_urls =
Bug Tracker = https://github.com/Kanjirito/simple-manga-downloader/issues
Use Guide = https://github.com/Kanjirito/simple-manga-downloader/blob/master/USAGE.md
Changelog = https://github.com/Kanjirito/simple-manga-downloader/blob/master/CHANGELOG.md
description = Simple manga console downloader
long_description = file: README.md
long_description_content_type = text/markdown
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Environment :: Console
keywords =
manga
downloader
[options]
packages = find:
install_requires =
requests~=2.23
beautifulsoup4~=4.9
urllib3>=1.26.5
python_requires = >=3.6
[options.entry_points]
console_scripts =
SMD=simple_manga_downloader.SMD:main
smd=simple_manga_downloader.SMD:main
[flake8]
extend-exclude =
.venv/
template/
max-line-length = 88
max-doc-length = 88
extend-select =
# B903, B901 are optional bugbear errors
B903,
B901,
extend-ignore =
E203,
# E501 (Line too long)
# Ignored because black will handle line length and it helps avoiding awkward string breaks
E501,
# SIM105 (Use 'contextlib.suppress(...)' instead of try-except-pass)
SIM105,
# SIM108 (Use the ternary operator if it's reasonable)
SIM108,
# SIM119 (Use dataclasses for data containers)
# Python 3.6 doesn't have dataclasses
SIM119,
# E722 (Do not use bare except)
# Ignored in favour of the flake8-bugbear error which explains the problem better
E722,