-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (33 loc) · 1 KB
/
pyproject.toml
File metadata and controls
40 lines (33 loc) · 1 KB
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
[tool.poetry]
name = "ayaka"
version = "0.0.4.7"
description = "猫猫,猫猫!"
authors = ["Su <wxlxy316@163.com>"]
license = "MIT"
readme = "README.md"
homepage = "https://bridgel.github.io/ayaka/"
repository = "https://github.com/bridgeL/ayaka"
packages = [
{ include = "ayaka" }
]
[tool.poetry.dependencies]
python = "^3.10"
pydantic = ">=1.10.0"
httpx = ">=0.20.0,<1.0.0"
ayaka-db = ">=0.0.3"
ayaka-utils = ">=0.0.4"
fastapi = { version = ">=0.87.0,!=0.89.0,<1.0.0", optional = true }
uvicorn = { version = ">=0.20.0,<1.0.0", extras = ["standard"], optional = true }
nonebot2 = {version = ">=2.0.0b5", optional = true}
nonebot-adapter-onebot = {version = ">=2.2.0", optional = true}
playwright = {version = ">=1.17.2", optional = true}
[tool.poetry.extras]
fastapi = ["fastapi", "uvicorn"]
nb2ob11 = ["nonebot2", "nonebot-adapter-onebot"]
playwright = ["playwright"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.nonebot]
plugins = []
plugin_dirs = ["plugins"]