-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
65 lines (56 loc) · 1.72 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[project]
name = "nonebot-plugin-prometheus"
version = "0.3.7"
description = "为 NoneBot 和其他插件提供 Prometheus 监控支持"
readme = "README.md"
requires-python = ">=3.9, <4.0"
license = { file = "LICENSE" }
keywords = ["nonebot", "nonebot2", "nonebot-plugin", "prometheus"]
authors = [
{ name = "suyiiyii", email = "suyiiyii@gmail.com" }
]
maintainers = [
{ name = "suyiiyii", email = "suyiiyii@gmail.com" }
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries",
]
dependencies = [
"nonebot2>=2.2.1",
"prometheus-client>=0.21.1",
]
[project.urls]
"Homepage" = "https://github.com/suyiiyii/nonebot-plugin-prometheus"
"Repository" = "https://github.com/suyiiyii/nonebot-plugin-prometheus"
"Bug Tracker" = "https://github.com/suyiiyii/nonebot-plugin-prometheus/issues"
[tool.nonebot]
adapters = [
]
plugins = ["nonebot_plugin_prometheus"]
plugin_dirs = []
builtin_plugins = []
[dependency-groups]
dev = [
"nonebot-adapter-onebot>=2.4.6",
"nonebot2[fastapi]<3.0.0,>=2.3.3",
"pre-commit>=4.0.1",
"ruff>=0.8.4",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["nonebot_plugin_prometheus"]
[tool.hatch.build.targets.sdist]
only-include = ["nonebot_plugin_prometheus"]