-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (25 loc) · 771 Bytes
/
setup.py
File metadata and controls
26 lines (25 loc) · 771 Bytes
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
from setuptools import setup, find_packages
setup(
name='minichatgpt',
version='1.0.0',
description='Mini Chatbot using GPT',
author='eruigu',
author_email='erick@ruigu.dev',
packages=find_packages(),
package_data={'minichatgpt':
['model_training/intents.json', "frontend/**/*"]},
install_requires=[
'nltk~=3.8.1',
'flask~=2.2.3',
'numpy~=1.23.5',
'python-dotenv~=1.0.0',
'tensorflow~=2.12.0;platform_system=="Linux"',
'tensorflow-macos~=2.12.0;platform_system=="Darwin"',
'tensorflow-intel~=2.12.0;platform_system=="Windows"',
],
entry_points={
'console_scripts': [
'minichatgpt = minichatgpt.backend.server:main',
],
},
)