-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
38 lines (38 loc) · 1.05 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
from setuptools import setup, find_packages
setup(
name='mimicbot_cli',
version='1.0.1',
description='Tools and a pipeline for creating of an AI chat bot modeled to imitate a user',
url='https://github.com/CakeCrusher/mimicbot',
author='Sebastian Sosa',
author_email='[email protected]',
license='MIT License',
packages=find_packages(),
exclude=['tests'],
install_requires=[
'configparser',
'typer',
'huggingface-hub',
'pandas',
'numpy',
'torch',
'torchvision',
'torchaudio',
'requests',
'transformers',
'datasets',
'rouge-score',
'tqdm',
'discord.py==1.7.3',
'aiohttp==3.7.4',
'tensorboard',
'ipywidgets',
],
package_data={'mimicbot_cli.huggingface': ['*.md']},
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.10',
],
)