Format code with yapf
This commit fixes the style issues introduced in 2790f48 according to the output
from yapf.
Details: https://deepsource.io/gh/kokarare1212/librespot-python/transform/04a80a03-ea85-44b3-9159-2580bda68c1c/
This commit is contained in:
committed by
GitHub
parent
2790f484c8
commit
0741dbdd43
34
setup.py
34
setup.py
@@ -1,18 +1,20 @@
|
||||
import setuptools
|
||||
|
||||
setuptools.setup(
|
||||
name="librespot",
|
||||
version="0.0.1",
|
||||
description="Open Source Spotify Client",
|
||||
long_description=open("README.md").read(),
|
||||
long_description_content_type="text/markdown",
|
||||
author="kokarare1212",
|
||||
url="https://github.com/kokarare1212/librespot-python",
|
||||
license="Apache-2.0",
|
||||
packages=setuptools.find_packages("."),
|
||||
install_requires=["defusedxml", "protobuf", "pycryptodomex", "pyogg", "requests"],
|
||||
classifiers=[
|
||||
"Development Status :: 1 - Planning",
|
||||
"License :: OSI Approved :: Apache Software License",
|
||||
"Topic :: Multimedia :: Sound/Audio"
|
||||
])
|
||||
setuptools.setup(name="librespot",
|
||||
version="0.0.1",
|
||||
description="Open Source Spotify Client",
|
||||
long_description=open("README.md").read(),
|
||||
long_description_content_type="text/markdown",
|
||||
author="kokarare1212",
|
||||
url="https://github.com/kokarare1212/librespot-python",
|
||||
license="Apache-2.0",
|
||||
packages=setuptools.find_packages("."),
|
||||
install_requires=[
|
||||
"defusedxml", "protobuf", "pycryptodomex", "pyogg",
|
||||
"requests"
|
||||
],
|
||||
classifiers=[
|
||||
"Development Status :: 1 - Planning",
|
||||
"License :: OSI Approved :: Apache Software License",
|
||||
"Topic :: Multimedia :: Sound/Audio"
|
||||
])
|
||||
|
||||
Reference in New Issue
Block a user