-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
29 lines (28 loc) · 844 Bytes
/
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
from setuptools import setup, find_packages
setup(
name="cha",
version="0.10.13",
packages=find_packages(),
license="MIT",
description="A simple CLI tool for chatting, web scraping, and image generation with OpenAI's models",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
install_requires=[
"openai==1.58.1",
"beautifulsoup4==4.12.3",
"yt-dlp==2024.12.23",
"youtube-transcript-api==0.6.3",
"PyMuPDF==1.25.1",
"pillow==11.0.0",
"tiktoken==0.8.0",
"duckduckgo_search==7.0.2",
"pdf2image==1.17.0",
"python-docx==1.1.2",
"openpyxl==3.1.5",
"chardet==5.2.0",
],
python_requires=">=3.9.2",
entry_points={
"console_scripts": ["cha = cha.main:cli"],
},
)