Restyled by black

This commit is contained in:
Restyled.io 2022-07-18 18:47:52 +00:00
parent 2ec7b661b2
commit 5c54873b15
1 changed files with 17 additions and 15 deletions

View File

@ -1,17 +1,19 @@
import setuptools
setuptools.setup(name="librespot",
version="0.0.6",
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=open("requirements.txt").read().splitlines(),
classifiers=[
"Development Status :: 1 - Planning",
"License :: OSI Approved :: Apache Software License",
"Topic :: Multimedia :: Sound/Audio"
])
setuptools.setup(
name="librespot",
version="0.0.6",
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=open("requirements.txt").read().splitlines(),
classifiers=[
"Development Status :: 1 - Planning",
"License :: OSI Approved :: Apache Software License",
"Topic :: Multimedia :: Sound/Audio",
],
)