-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
42 lines (37 loc) · 1.13 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
[project]
name = "nonebot-plugin-color"
dynamic = ["version"]
description = "A specified color image generator for Nonebot2"
authors = [
{ name = "monsterxcn", email = "[email protected]" },
{ name = "student_2333", email = "[email protected]" },
]
requires-python = ">=3.9,<4.0"
dependencies = [
"nonebot2>=2.3.1",
"nonebot-plugin-alconna>=0.48.0",
"pil-utils>=0.1.10",
]
readme = "README.md"
keywords = ["nonebot", "nonebot2", "color"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
license = { text = "MIT" }
[project.urls]
homepage = "https://github.com/monsterxcn/nonebot-plugin-color"
documentation = "https://github.com/monsterxcn/nonebot-plugin-color#readme"
"Bug Tracker" = "https://github.com/monsterxcn/nonebot-plugin-color/issues"
[project.optional-dependencies]
pyd2 = ["pydantic-extra-types>=2.8.2"]
all = ["nonebot-plugin-color[pyd2]"]
[tool.pdm.version]
source = "file"
path = "nonebot_plugin_color/__init__.py"
[tool.pdm.build]
includes = []
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"