first commit

This commit is contained in:
cool.gitter.not.me.again.duh
2025-05-30 21:28:21 -06:00
commit 92a7a5d84e
95 changed files with 30188 additions and 0 deletions

17
setup.py Normal file
View File

@@ -0,0 +1,17 @@
import setuptools
setuptools.setup(name="librespot",
version="0.1.0",
description="Spotizerr's python librespot implementation",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
author="Xoconoch",
url="https://github.com/Xoconoch/librespot-spotizerr",
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"
])