-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
20 lines (19 loc) · 941 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
"""Setup script"""
from distutils.core import setup
setup(name='modbot', version='0.1.0',
url='https://github.com/bnb32/modbot',
author='Brandon N. Benton',
description='twitch moderation bot',
packages=['modbot'],
package_dir={'modbot': './modbot'},
entry_points={
"console_scripts": ["modbot-train = modbot.training.__main__:main",
"modbot = modbot.__main__:main"]},
install_requires=['nltk', 'gensim', 'scikit-learn>=1.0.1', 'symspellpy',
'pandas', 'sphinx-argparse',
'numpy>=1.20.3', 'dask_ml',
'dask', 'requests', 'websockets', 'emoji', 'pytz',
'googletrans', 'tqdm', 'joblib',
'scipy>=1.7.3', 'tensorflow>=2.7', 'keras',
'tensorflow_hub', 'tensorflow_text', 'torch',
'transformers'])