-
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
/
setup.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 setup, find_packages
setup(
name="corpus-cli",
version="1.0.0",
description="A powerful CLI for indexing and chatting with documents using AI",
author="Your Name",
packages=find_packages(),
install_requires=[
"typer>=0.9.0",
"rich>=13.0.0",
"chromadb>=0.4.0",
"google-generativeai>=0.3.0",
"pypdf>=3.0.0",
"python-docx>=1.0.0",
"beautifulsoup4>=4.12.0",
"requests>=2.31.0",
"psutil>=5.9.0",
"watchdog>=3.0.0",
# Add any other dependencies from your requirements.txt
],
entry_points={
"console_scripts": [
"corpus=corpus.__main__:app",
],
},
python_requires=">=3.8",
include_package_data=True,
)