Files
librespot-spotizerr-dev/setup.py
cool.gitter.not.me.again.duh 13a3bab5ff 0.2.0
2025-05-31 16:24:08 -06:00

18 lines
825 B
Python

import setuptools
setuptools.setup(name="librespot-spotizerr",
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"
])