-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (22 loc) · 704 Bytes
/
setup.py
File metadata and controls
27 lines (22 loc) · 704 Bytes
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
27
import os
import pyspot
from codecs import open
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='pyspot',
version=pyspot.__version__,
description='A Python SDK used to interface with the Spotify Web API',
long_description=long_description,
url='https://github.com/rightlag/pyspot',
author=pyspot.__author__,
author_email='rightlag@gmail.com',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha'
],
keywords='spotify web-api sdk',
packages=find_packages(exclude=['test*'])
)