-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
48 lines (47 loc) · 1005 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
from setuptools import setup
setup(
version='0.1.0',
name='calm',
description="A peaceful user experience for Language Models",
packages=[
'calm',
],
scripts=[
'scripts/calm'
],
include_package_data=True,
keywords='',
author='Ian Dennis Miller',
author_email='[email protected]',
url='https://github.com/iandennismiller/calm',
install_requires=[
"python-dotenv",
"click",
"pyyaml",
"rich",
"psutil",
"requests",
"redis",
"redis-om",
"guidance",
"chromadb",
"llama-cpp-python[server]",
"llama-cpp-guidance",
"sentence_transformers",
],
extras_require={
"dev": [
"pytest",
"pdbpp",
"mypy",
"pylint",
"ipython",
],
"docs": [
"sphinx",
"sphinx_rtd_theme",
]
},
license='MIT',
zip_safe=False,
)