forked from li-plus/chatglm.cpp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
41 lines (38 loc) · 1.09 KB
/
pyproject.toml
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
[build-system]
requires = [
"setuptools>=42",
"cmake>=3.12",
]
build-backend = "setuptools.build_meta"
[project]
name = "chatglm-cpp"
authors = [
{name = "Jiahao Li", email = "[email protected]"},
]
maintainers = [
{name = "Jiahao Li", email = "[email protected]"},
]
description = "C++ implementation of ChatGLM-6B & ChatGLM2-6B"
readme = "README.md"
requires-python = ">=3.7"
keywords = ["ChatGLM", "ChatGLM2", "Large Language Model"]
license = {text = "MIT License"}
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dynamic = ["version"]
[project.optional-dependencies]
api = [
"fastapi[all]",
"sse-starlette",
]
[project.urls]
Homepage = "https://github.com/li-plus/chatglm.cpp"
Repository = "https://github.com/li-plus/chatglm.cpp.git"