Skip to content

Commit

Permalink
Remove requirements.txt, cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
eriknyquist committed Mar 22, 2021
1 parent 2771e85 commit 1812ecc
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
4 changes: 0 additions & 4 deletions requirements.txt

This file was deleted.

10 changes: 8 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
]
)

0 comments on commit 1812ecc

Please sign in to comment.