Files
librespot-spotizerr-dev/setup.py
cool.gitter.not.me.again.duh 92a7a5d84e first commit
2025-05-30 21:28:21 -06:00

18 lines
815 B
Python

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"
])