From 350615b48141ae2c480fbfdb8ffd23e62c029bc8 Mon Sep 17 00:00:00 2001 From: Science Spot <69678617+Scientific-Guy@users.noreply.github.com> Date: Fri, 25 Sep 2020 14:21:47 +0530 Subject: [PATCH] Create setup.py --- setup.py | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..b074758 --- /dev/null +++ b/setup.py @@ -0,0 +1,23 @@ +from setuptools import setup + +def readme(): + with open('README.md') as f: + README = f.read() + return README + +setup( + name="spotify-api.py", + version="0.0.1", + url="https://github.com/spotify-api/spotify-api.py", + description="A simple wrapper for spotify api written in python!", + long_description=readme(), + long_description_content_type="text/markdown", + packages=['spotifyapi'], + keywords=['spotifyapi', 'spotify-api.py', 'spotify'], + classifiers=[ + "License :: OSI Approved :: MIT License", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.7", + ], + license="MIT", +)