From 9f73abaadcf4b37fd1c395fca0e659b3a10b172b Mon Sep 17 00:00:00 2001 From: matt henley Date: Wed, 2 Oct 2019 14:25:17 -0500 Subject: [PATCH] Create setup.py --- setup.py | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..8b6b165 --- /dev/null +++ b/setup.py @@ -0,0 +1,33 @@ +from setuptools import setup, find_packages +from os import path + +here = path.abspath(path.dirname(__file__)) + +setup( + name='fresh-script', + version='0.0.dev1', + description='''Search for Spotify tracks posted in the HipHopHeads + subreddit and add them to a playlist of your choice''', + long_description=long_description, + long_description_content_type='text/markdown', + url='https://github.com/amcquade/fresh_script', + author='Aaron McQuade', + classifiers=[ + 'Development Status :: 3 - Alpha', + 'Intended Audience :: End Users/Desktop', + 'License :: MIT License', + 'Programming Language :: Python :: 3.7', + ], + + keywords='spotify reddit subreddit HipHopHeads hiphop rap', + + packages=find_packages(exclude=['contrib', 'docs', 'tests']), + + python_requires='>=3.7', + + install_requires=['praw', 'spotipy', 'configparser', 'cutie', 'crontab', 'flask'], + + extras_require={ + 'dev': ['pylint'], + }, +)