-
Notifications
You must be signed in to change notification settings - Fork 13
/
pyproject.toml
41 lines (34 loc) · 1.01 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
[tool.poetry]
name = "yiri-mirai"
version = "0.2.7"
description = "一个轻量级、低耦合的基于 mirai-api-http 的 Python SDK。"
authors = ["忘忧北萱草 <[email protected]>"]
packages = [{ include = "mirai" }]
license = "AGPL-3.0"
readme = "README.md"
homepage = "https://yiri-mirai.vercel.app"
[tool.poetry.dependencies]
python = ">=3.7, <=3.10"
httpx = ">=0.18.2, <1.0"
pydantic = "^1.8.2"
websockets = "^10.0"
typing-extensions = { version = "^3.10.0", python = "3.7" }
starlette = ">=0.14.2, < 1.0"
aiofiles = "^0.7.0"
uvicorn = { extras = ["standard"], version = ">=0.14.0, <1.0", optional = true }
hypercorn = { version = ">=0.11.2, <1.0", optional = true }
[tool.poetry.dev-dependencies]
yapf = "^0.31.0"
toml = "^0.10.2"
pdoc3 = "^0.9.2"
mypy = "^0.910"
[tool.poetry.extras]
uvicorn = ["uvicorn"]
hypercorn = ["hypercorn"]
[[tool.poetry.source]]
name = "tuna"
url = "https://pypi.tuna.tsinghua.edu.cn/simple"
default = true
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"