forked from lm-sys/FastChat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
29 lines (25 loc) · 843 Bytes
/
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "fastchat"
version = "0.1.0"
description = "chatbot server"
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
]
dependencies = [
"fastapi", "gdown", "gradio==3.23", "requests", "uvicorn", "numpy",
"transformers>=4.26.1", "torch", "sentencepiece", "tokenizers==0.12.1", "wandb",
"markdown2[all]"
]
[project.urls]
"Homepage" = "https://github.com/lm-sys/fastchat"
"Bug Tracker" = "https://github.com/lm-sys/fastchat/issues"
[tool.setuptools.packages.find]
exclude = ["benchmark*", "dist*", "playground*", "scripts*", "tests*"]
[tool.wheel]
exclude = ["benchmark*", "dist*", "playground*", "scripts*", "tests*"]