-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
34 lines (28 loc) · 951 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
30
31
32
33
34
[build-system]
requires = ["setuptools>=64", "setuptools-scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "fastmindapi"
description = "An easy-to-use, high-performance(?) backend for serving LLMs and other AI models, built on FastAPI."
dynamic = ["version", "dependencies"]
readme = "README.md"
requires-python = ">=3.10"
license = { file = "LICENSE" }
authors = [
{ name = "Mengsong Wu", email = "radi.cat@qq.com" },
]
maintainers = [
{ name = "Mengsong Wu", email = "radi.cat@qq.com" },
]
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
[tool.setuptools.packages.find]
where = ["src"]
include = ["fastmindapi"]
[tool.setuptools_scm]
[project.urls]
"Homepage" = "https://github.com/fairyshine/FastMindAPI/"
"Bug Tracker" = "https://github.com/fairyshine/FastMindAPI/issues"
"Source" = "https://github.com/fairyshine/FastMindAPI"
[project.scripts]
fastmindapi-server = "fastmindapi.cli:run_server"