-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (28 loc) · 778 Bytes
/
Copy pathsetup.py
File metadata and controls
29 lines (28 loc) · 778 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
27
28
29
from setuptools import find_packages, setup
setup(
name="ecommbot",
version="0.0.1",
author="Shaurab",
author_email="shaurbaio@gmail.com",
description="E-commerce chatbot using LangChain, AstraDB, and Mistral 7B via Hugging Face.",
packages=find_packages(),
include_package_data=True,
install_requires=[
"langchain",
"langchain-core",
"langchain-community",
"langchain-astradb",
"datasets",
"pypdf",
"python-dotenv",
"flask",
"requests",
"transformers",
"huggingface_hub"
],
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
python_requires=">=3.8",
)