forked from enriquegh/spotify-webplayer-token
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (23 loc) · 872 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
from setuptools import setup
with open('README.rst') as rd:
long_description = rd.read()
with open("requirements.txt") as rq:
requirements = rq.read().splitlines()
setup(
name='spotify_token',
py_modules=['spotify_token'],
version='0.1.3',
description='Python wrapper for Spotify Webplayer access token',
author='Enrique Gonzalez',
author_email='[email protected]',
license='MIT',
url='https://github.com/enriquegh/spotify-webplayer-token',
install_requires=requirements,
long_description=long_description,
keywords=['wrapper', 'spotify'],
classifiers=["Programming Language :: Python :: 3",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities"],
)