-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (40 loc) · 1.29 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
39
40
41
42
from setuptools import find_packages, setup
with open('README.md', 'r') as f:
long_description = f.read()
setup(
name='bharat-chatbot-groq',
version='0.0.1',
author='Mohit Kumar',
author_email='mohitpanghal12345@gmail.com',
description='An AI-powered chatbot using multiple open source models using groq',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/itsmohitkumar/bharat-chatbot-groq',
install_requires=[
'langchain',
'streamlit',
'python-dotenv',
'langchain-core',
'langchain-community',
'pypdf',
'langchain-groq',
'sentence-transformers',
'sentence_transformers',
'duckduckgo-search',
'arxiv',
'wikipedia',
'faiss-cpu'
],
packages=find_packages(),
include_package_data=True,
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
],
python_requires='>=3.9',
)