| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 | [metadata]name = Mopidy-Webhooksversion = 0.2.2url = https://github.com/powellc/mopidy-webhooksauthor = Colin Powellauthor_email = colin@unbl.inklicense = Apache License, Version 2.0license_file = LICENSEdescription = Mopidy extension for sending playback data to webhook urlslong_description = file: README.rstclassifiers =    Environment :: No Input/Output (Daemon)    Intended Audience :: End Users/Desktop    License :: OSI Approved :: Apache Software License    Operating System :: OS Independent    Programming Language :: Python :: 3    Programming Language :: Python :: 3.7    Programming Language :: Python :: 3.8    Programming Language :: Python :: 3.9    Topic :: Multimedia :: Sound/Audio :: Players[options]zip_safe = Falseinclude_package_data = Truepackages = find:python_requires = >= 3.7install_requires =    Mopidy >= 3.0.0    Pykka >= 2.0.1    setuptools[options.extras_require]lint =    black    check-manifest    flake8    flake8-black    flake8-bugbear    flake8-import-order    isort[pyproject]test =    pytest    pytest-covdev =    %(lint)s    %(test)s[options.packages.find]exclude =    tests    tests.*[options.entry_points]mopidy.ext =    webhooks = mopidy_webhooks:Extension[flake8]application-import-names = mopidy_webhooks, testsmax-line-length = 80exclude = .git, .tox, buildselect =    # Regular flake8 rules    C, E, F, W    # flake8-bugbear rules    B    # B950: line too long (soft speed limit)    B950    # pep8-naming rules    Nignore =    # 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
 |