forked from poe-platform/fastapi_poe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
47 lines (41 loc) · 991 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
35
36
37
38
39
40
41
42
43
44
45
46
47
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "fastapi_poe"
version = "0.0.29"
authors = [
{ name="Lida Li", email="lli@quora.com" },
{ name="Jelle Zijlstra", email="jelle@quora.com" },
{ name="Anmol Singh", email="anmol@quora.com" },
]
description = "A demonstration of the Poe protocol using FastAPI"
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
dependencies = [
"fastapi",
"sse-starlette",
"typing-extensions",
"uvicorn",
"httpx",
"httpx-sse",
"pydantic>2",
]
[project.urls]
"Homepage" = "https://github.com/quora/poe-protocol"
[tool.pyright]
pythonVersion = "3.7"
[tool.black]
target-version = ['py37']
skip-magic-trailing-comma = true
[tool.pycln]
all = true
[tool.isort]
profile = "black"
combine_as_imports = true
skip_gitignore = true