-
-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathsetup.py
17 lines (16 loc) · 803 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import setuptools
setuptools.setup(name="librespot",
version="0.0.9",
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("."),
install_requires=open("requirements.txt").read().splitlines(),
classifiers=[
"Development Status :: 1 - Planning",
"License :: OSI Approved :: Apache Software License",
"Topic :: Multimedia :: Sound/Audio"
])