-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
31 lines (30 loc) · 947 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
from setuptools import setup, find_packages
from chatchat.version import __version__
setup(
name = 'chatchat',
packages = find_packages(exclude=['examples']),
version = __version__,
license = 'GPL-2.0',
description = 'Large Language Models Python 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=[
'conippets >= 0.1.1', 'httpx',
],
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'],
},
)