-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
44 lines (38 loc) · 979 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
[tool.poetry]
name = "cqbot"
version = "0.4.0"
description = "just a chatting bot"
authors = ["Lycreal"]
license = "MIT"
readme = 'README.md' # Markdown files are supported
repository = "https://github.com/Lycreal/cqbot"
[tool.poetry.dependencies]
python = "^3.8"
nonebot2 = "^2.0.0b5"
nonebot-adapter-onebot = "^2.1.1"
nonebot-plugin-manager = "^0.5.9"
nonebot-plugin-help = "^0.3.1"
nonebot-plugin-apscheduler = "^0.1.4"
pydantic = "^1.9.1"
lxml = "^4.9.1"
httpx = "^0.21.3"
opencv-python-headless = "^4.6.0"
numpy = "^1.23.1"
starlette = "^0.19.1"
[tool.poetry.dev-dependencies]
pytest = "^6.2.4"
pytest-cov = "^3.0.0"
pytest-asyncio = "^0.16.0"
requests = "^2.25.1"
mypy = "^0.971"
nonebot-plugin-test = "^0.3.0"
nonebug = "^0.2.1"
[tool.pytest.ini_options]
# https://docs.pytest.org/en/6.2.x/reference.html#configuration-options
minversion = "6.0"
testpaths = [
"tests"
]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"