86 lines
1.7 KiB
INI
86 lines
1.7 KiB
INI
[metadata]
|
|
name = Mopidy-Subidy
|
|
version = 1.0.0
|
|
url = https://github.com/Prior99/mopidy-subidy
|
|
author = prior99
|
|
author_email = fgnodtke@cronosx.de
|
|
license = BSD-3-Clause
|
|
license_file = LICENSE
|
|
description = Subsonic extension for Mopidy
|
|
long_description = file: README.rst
|
|
classifiers =
|
|
Environment :: No Input/Output (Daemon)
|
|
Intended Audience :: End Users/Desktop
|
|
License :: OSI Approved :: BSD License
|
|
Operating System :: OS Independent
|
|
Programming Language :: Python :: 3
|
|
Programming Language :: Python :: 3.7
|
|
Programming Language :: Python :: 3.8
|
|
Topic :: Multimedia :: Sound/Audio :: Players
|
|
|
|
|
|
[options]
|
|
zip_safe = False
|
|
include_package_data = True
|
|
packages = find:
|
|
python_requires = >= 3.7
|
|
install_requires =
|
|
Mopidy >= 3.0.0
|
|
Pykka >= 2.0.1
|
|
setuptools
|
|
py-sonic >= 0.7.7
|
|
|
|
|
|
[options.extras_require]
|
|
lint =
|
|
black
|
|
check-manifest
|
|
flake8
|
|
flake8-bugbear
|
|
flake8-import-order
|
|
isort[pyproject]
|
|
release =
|
|
twine
|
|
wheel
|
|
test =
|
|
pytest
|
|
pytest-cov
|
|
dev =
|
|
%(lint)s
|
|
%(release)s
|
|
%(test)s
|
|
|
|
|
|
[options.packages.find]
|
|
exclude =
|
|
tests
|
|
tests.*
|
|
|
|
|
|
[options.entry_points]
|
|
mopidy.ext =
|
|
subidy = mopidy_subidy:SubidyExtension
|
|
|
|
|
|
[flake8]
|
|
application-import-names = mopidy_subidy, 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
|