-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
25 lines (24 loc) · 841 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
from setuptools import setup, find_packages
setup(
name='local-llama',
version='1.0.3',
description='A flask server for a chrome extension that querys llm models',
long_description='A flask server for a chrome extension that querys llm models for use with this chrome extention: https://chrome.google.com/webstore/detail/local-llama-llm-ai-chat-q/ekobbgdgkocdnnjoahoojakmoimfjlbm',
url='https://github.com/mrdiamonddirt/local-llama-chrome-extension',
author='Rowan Wood',
author_email='[email protected]',
packages=find_packages(),
install_requires=[
'Flask',
'flask-cors',
'rich',
'llama-cpp-python',
'typing-extensions',
'typing',
],
entry_points={
'console_scripts': [
'local-llama = Cli.cli:main',
],
},
)