Initial Commit

This commit is contained in:
kokarare1212
2021-02-24 08:46:59 +09:00
parent 6bee6cd53a
commit 01dae8ada4
160 changed files with 29238 additions and 4 deletions

19
setup.py Normal file
View File

@@ -0,0 +1,19 @@
import setuptools
setuptools.setup(
name="librespot",
version="0.0.1-SNAPSHOT",
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("src"),
package_dir={"": "src"},
install_requires=["defusedxml", "protobuf", "pycryptodome", "requests"],
classifiers=[
"Development Status :: 1 - Planning",
"License :: OSI Approved :: Apache Software License",
"Topic :: Multimedia :: Sound/Audio"
])