-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
63 lines (55 loc) · 1.64 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#! /usr/bin/env python
# Copyright (C) 2022-2023 Ajay Arunachalam <[email protected]>
# License: MIT, [email protected]
import pip
import logging
import pkg_resources
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
__version__ = '0.0.1'
def readme():
with open('README.rst', 'r', encoding='utf-8') as f:
return f.read()
setup(
name='pychatgpt_gui',
version=__version__,
packages=["pychatgpt_gui"],
description='pyChatGPT GUI - is an open-source, low-code python GUI wrapper providing easy access and swift usage of Large Language Models (LLMs) such as ChatGPT, AutoGPT, LLaMa, GPT-J, and GPT4All with custom-data and pre-trained inferences.',
long_description = readme(),
long_description_content_type="text/markdown",
url='https://github.com/ajayarunachalam/pychatgpt_gui',
install_requires=[
"numpy",
"pandas",
"warnings",
"scipy",
"tqdm",
"openai",
"gpt_index==0.4.24",
"PyPDF2",
"PyCryptodome",
"gradio",
"scikit-learn",
"openai_whisper",
"TTS",
"gTTS",
"ffmpeg",
"ffprobe",
"SpeechRecognition",
"pyaudio",
"playsound",
"langchain",
"chromadb",
"tiktoken",
"pypdf",
"unstructured[local-inference]",
"nomic",
"pyllamacpp",
"pygpt4all",
],
license='MIT',
include_package_data=True,
author='Ajay Arunachalam',
author_email='[email protected]')