generated from A-kirami/nonebot-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
38 lines (35 loc) · 1.12 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
[project]
name = "nonebot-plugin-checkbpm"
version = "1.0.7"
description = "基于Librosa的音频文件BPM计算器 通过上传到群文件方式计算音频文件的bpm值(beat per minute)"
readme = "README.md"
requires-python = ">=3.9"
license = {file = "LICENSE"}
keywords = ["nonebot2", "bpm", "music"]
authors = [
{email = "glz15757339816@gmail.com"},
{name = "Ant1"}
]
maintainers = [
{name = "Ant1", email = "glz15757339816@gmail.com"}
]
classifiers = [
"License :: OSI Approved :: MIT License",
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3.12"
]
dependencies = [
"nonebot2>=2.3.1",
"nonebot-adapter-onebot>=2.1.0",
"nonebot_plugin_localstore>=0.7.1",
"librosa>=0.9.1",
"numpy>=2.0.2",
"httpx>=0.27.0",
]
[project.optional-dependencies]
test = []
[project.urls]
homepage = "https://github.com/Ant1816/nonebot-plugin-checkbpm"
documentation = "https://github.com/Ant1816/nonebot-plugin-checkbpm/blob/master/README.md"
repository = "https://github.com/Ant1816/nonebot-plugin-checkbpm"
changelog = "https://github.com/Ant1816/nonebot-plugin-checkbpm/commits/master/"