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/
21 lines
884 B
Python
21 lines
884 B
Python
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"
|
|
])
|