-
Notifications
You must be signed in to change notification settings - Fork 41
/
setup.py
49 lines (48 loc) · 1.2 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
from setuptools import setup, find_packages
setup(
name='gentopia',
version='0.0.4',
packages=find_packages(exclude=['llm', 'llm.*']),
url='https://github.com/Gentopia-AI/Gentopia',
license='MIT license',
author='billxbf',
author_email='billxbf@gmail.com',
description='Gentopia provides extensive utilities to assembles ALM agents driven by configs.',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
extras_require={
'huggingface': ['torch', 'transformers', 'optimum', 'peft'],
},
install_requires=[
'tenacity',
'python-dotenv',
'arxiv',
'chardet',
'cchardet',
'numexpr',
'googlesearch-python',
'wolframalpha',
'numpy',
'rich',
'tqdm',
'prompt-toolkit',
'regex',
'attrs',
'fastapi',
'geopy',
'pydantic==1.9',
'pytest',
'PyYAML',
'requests',
'setuptools',
'uvicorn',
'openai',
'pexpect',
'gradio_client',
'pinecone-client',
'chroma',
'chromadb',
'tiktoken',
'scholarly'
],
)