-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
30 lines (29 loc) · 891 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
from setuptools import setup, find_packages
setup(
name = 'chatchat',
packages = find_packages(exclude=['examples']),
version = '0.1.8',
license = 'GPL-2.0',
description = 'Large Language Model API',
author = 'JiauZhang',
author_email = '[email protected]',
url = 'https://github.com/JiauZhang/chatchat',
long_description=open("README.md", "r", encoding="utf-8").read(),
long_description_content_type = 'text/markdown',
keywords = [
'llm',
'chatapi',
'chatbot',
],
install_requires=[
'httpx', 'websocket-client',
],
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Programming Language :: Python :: 3.8',
],
entry_points = {
'console_scripts': ['chatchat=chatchat.__main__:main'],
},
)