Skip to content

Commit

Permalink
Create setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
scientific-dev authored Sep 25, 2020
1 parent 4879b33 commit 350615b
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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",
)

0 comments on commit 350615b

Please sign in to comment.