-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
33 lines (27 loc) · 1.03 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "llm"
version = "0.1"
description = "A platform for training and evaluating large language model based chatbots."
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
]
dependencies = [
"setuptools_scm", "aiohttp", "fastapi", "httpx", "markdown2[all]", "nh3", "numpy",
"prompt_toolkit>=3.0.0", "pydantic<2,>=1", "requests", "rich>=10.0.0",
"shortuuid", "tiktoken", "uvicorn", "transformers_stream_generator",
]
[project.optional-dependencies]
data = ["lingua-language-detector"]
[project.urls]
"Homepage" = "https://github.com/congchan/llm"
"Bug Tracker" = "https://github.com/congchan/llm/issues"
[tool.setuptools.packages.find]
exclude = ["assets*", "benchmark*", "docs", "dist*", "playground*", "scripts*", "tests*"]
[tool.wheel]
exclude = ["assets*", "benchmark*", "docs", "dist*", "playground*", "scripts*", "tests*"]