From c7f2cabc84619f3718be9ff6f2e5e852c9322881 Mon Sep 17 00:00:00 2001 From: "IAmCrowfunder@gmail.com" Date: Fri, 25 Oct 2019 15:19:09 +0200 Subject: [PATCH 1/2] Added setup.py --- setup.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..47a257e --- /dev/null +++ b/setup.py @@ -0,0 +1,12 @@ +from setuptools import setup + +setup( + name='fresh_script', + version='', + packages=[''], + url='https://github.com/amcquade/fresh_script', + license='MIT', + author='amcquade', + author_email='', + description='Find Spotify tracks posted to the HipHopHeads subreddit and add them to a Spotify playlist.' +) From 271028c6dd1cdf50d5223922ac200f5e9fbd90d8 Mon Sep 17 00:00:00 2001 From: Crowfunder <52300171+Crowfunder@users.noreply.github.com> Date: Fri, 25 Oct 2019 15:37:40 +0200 Subject: [PATCH 2/2] Update setup.py --- setup.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 47a257e..1bf1390 100644 --- a/setup.py +++ b/setup.py @@ -2,8 +2,9 @@ setup( name='fresh_script', - version='', - packages=[''], + version='1.2.0', + packages=find_packages(exclude=['contrib', 'docs', 'tests']) + install_requires=['spotipy', 'prawcore', 'flask', 'configparser', 'constants', 'cutie', 'git', 'crontab', 'textwrap'] url='https://github.com/amcquade/fresh_script', license='MIT', author='amcquade',