mirror of
https://github.com/spotipy-dev/spotipy.git
synced 2026-06-19 01:03:53 +00:00
21 lines
545 B
Python
21 lines
545 B
Python
from setuptools import setup
|
|
|
|
with open("README.md", "r") as f:
|
|
long_description = f.read()
|
|
|
|
setup(
|
|
name='spotipy',
|
|
version='2.7.1',
|
|
description='A light weight Python library for the Spotify Web API',
|
|
long_description=long_description,
|
|
long_description_content_type="text/markdown",
|
|
author="@plamere",
|
|
author_email="paul@echonest.com",
|
|
url='http://spotipy.readthedocs.org/',
|
|
install_requires=[
|
|
'requests>=2.20.0',
|
|
'six>=1.10.0',
|
|
],
|
|
license='LICENSE.md',
|
|
packages=['spotipy'])
|