spotipy/setup.py

13 lines
313 B
Python
Raw Normal View History

2014-04-05 13:12:01 +00:00
from setuptools import setup
setup(
name='spotipy',
2014-05-16 11:56:59 +00:00
version='1.100',
2014-04-05 18:52:57 +00:00
description='simple client for the Spotify Web API',
2014-04-05 13:12:01 +00:00
author="@plamere",
author_email="paul@echonest.com",
url='http://github.com/plamere/spotipy',
2014-04-05 18:52:57 +00:00
install_requires=['requests>=1.0', ],
2014-04-05 13:12:01 +00:00
py_modules=['spotipy'],)