Initial Commit
This commit is contained in:
19
setup.py
Normal file
19
setup.py
Normal 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"
|
||||
])
|
||||
Reference in New Issue
Block a user