-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (35 loc) · 845 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
from setuptools import setup
name='LibertyAI'
version='0.1'
release=version+'.0'
setup(
name=name,
version=version,
author='A ChatGPT clone',
author_email='[email protected]',
packages=['LibertyAI'],
scripts=[
'services/liberty_api_server.py',
],
url='https://redmine.libresilicon.com/projects/danube-river',
license='LICENSE.txt',
description='A clone of ChatGPT, based on LLaMA, without woke censorship',
long_description=open('README.md').read(),
install_requires=[
'argparse',
'appdirs',
'bs4',
'numpy',
'datasets',
'loralib',
'langchain',
'pgvector',
'psycopg2',
'gevent',
'typing',
'sentence_transformers',
'langdetect',
'rwkv',
'tokenizers',
],
)