diff --git a/requirements.txt b/requirements.txt deleted file mode 100644 index 2a62e19..0000000 --- a/requirements.txt +++ /dev/null @@ -1,4 +0,0 @@ -wheel -nltk -discord -python-twitch-client diff --git a/setup.py b/setup.py index 7e37b8e..5fa2254 100755 --- a/setup.py +++ b/setup.py @@ -22,7 +22,13 @@ license='Apache 2.0', packages=['twitch_monitor_discord_bot'], package_dir={'twitch_monitor_discord_bot': 'twitch_monitor_discord_bot'}, - package_data={'twitch_monitor_discord_bot': ['twitch_monitor_discord_bot/quotedb.json']}, + package_data={'twitch_monitor_discord_bot': [os.path.join('twitch_monitor_discord_bot', 'quotedb.json')]}, include_package_data=True, - zip_safe=False + zip_safe=False, + + install_requires=[ + 'nltk', + 'discord', + 'python-twitch-client' + ] )