librespot-python/setup.py

19 lines
637 B
Python
Raw Normal View History

2021-02-24 00:46:59 +01:00
import setuptools
setuptools.setup(
name="librespot",
2021-07-18 00:32:26 +02:00
version="0.0.1",
2021-02-24 00:46:59 +01:00
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",
2021-02-25 00:07:17 +01:00
packages=setuptools.find_packages("."),
2021-07-07 10:41:35 +02:00
install_requires=["defusedxml", "protobuf", "pycryptodomex", "requests"],
2021-02-24 00:46:59 +01:00
classifiers=[
"Development Status :: 1 - Planning",
"License :: OSI Approved :: Apache Software License",
"Topic :: Multimedia :: Sound/Audio"
])