-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
22 lines (21 loc) · 772 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
from setuptools import setup
import sdist_upip
setup(
name='micropython-spotify-web-api',
packages=['spotify_web_api'],
version='0.0.1',
description='Spotify Web API client for MicroPython',
long_description='Spotify Web API client for MicroPython',
url='https://github.com./tltx/micropython-spotify-web-api',
author='Tore Lundqvist',
author_email='[email protected]',
license='MIT',
cmdclass={'sdist': sdist_upip.sdist},
classifiers=[
"Development Status :: 4 - Beta",
"Programming Language :: Python :: Implementation :: MicroPython",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: 3.5",
"License :: OSI Approved :: MIT License",
],
)