-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.cfg
72 lines (64 loc) · 1.6 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
[metadata]
name = Mopidy-API-Explorer
version = 2.0.0
url = https://github.com/mopidy/mopidy-api-explorer
author = Matthew Gamble
author_email = [email protected]
license = MIT
license_file = LICENSE
description = Mopidy API Explorer
long_description = file: README.rst
classifiers =
Environment :: No Input/Output (Daemon)
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python :: 3
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Topic :: Multimedia :: Sound/Audio :: Players
[options]
zip_safe = False
include_package_data = True
packages = find:
python_requires = >= 3.9
install_requires =
Mopidy >= 3.1.1
setuptools
[options.extras_require]
lint =
black
check-manifest
flake8
flake8-black
flake8-bugbear
flake8-import-order
isort
dev =
%(lint)s
[options.entry_points]
mopidy.ext =
api_explorer = mopidy_api_explorer:Extension
[flake8]
application-import-names = mopidy_api_explorer, tests
max-line-length = 80
exclude = .git, .tox, build
select =
# Regular flake8 rules
C, E, F, W
# flake8-bugbear rules
B
# B950: line too long (soft speed limit)
B950
# pep8-naming rules
N
ignore =
# E203: whitespace before ':' (not PEP8 compliant)
E203
# E501: line too long (replaced by B950)
E501
# W503: line break before binary operator (not PEP8 compliant)
W503
# B305: .next() is not a thing on Python 3 (used by playback controller)
B305