-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
36 lines (34 loc) · 942 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
[project]
name = "nonebot-plugin-orangejuice"
version = "1.0.2"
dependencies = [
"nonebot2>=2.0.0",
"nonebot-adapter-onebot>=2.0.0-beta.1",
"nonebot-plugin-apscheduler>=0.4.0",
"cachetools>=5.0.0",
"aiohttp>=3.8.0",
"aiosqlite>=0.20.0",
"aiomysql>=0.2.0",
"FuzzyWuzzy>=0.18.0",
"python-Levenshtein>=0.25.0"
]
requires-python = ">=3.8"
authors = [{ name = "Polaris_Light", email = "[email protected]" }]
description = "Sorabot Implemention"
license = { file = "LICENSE" }
readme = "README.md"
keywords = ["orangejuice"]
classifiers = []
[project.urls]
Homepage = "https://github.com/FDCraft/nonebot-plugin-orangejuice"
[tool.poetry.dependencies]
nonebot-adapter-onebot = ">=2.0.0-beta.1"
nonebot-plugin-apscheduler = ">=0.4.0"
nonebot2 = ">=2.0.0"
python = "^3.8"
cachetools = ">=5.0.0"
aiohttp = ">=3.8.0"
aiomysql = ">=0.2.0"
aiosqlite = ">=0.20.0"
FuzzyWuzzy = ">=0.18.0"
python-Levenshtein = ">=0.25.0"