-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
45 lines (38 loc) · 913 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
45
[project]
name = "nonebot-plugin-wordle-daily"
version = "0.1.0"
description = ""
authors = [
{name = "iyume", email = "iyumelive@gmail.com"},
]
dependencies = [
"nonebot2>=2.0.0b1",
"nonebot-adapter-onebot>=2.0.0b1",
"Pillow>=8.4.0",
"nonebot-plugin-params>=0.1.0",
]
requires-python = ">=3.7.3"
license = {text = "MIT"}
readme = "README.md"
keywords = ["nonebot", "onebot", "wordle"]
[project.urls]
homepage = "https://github.com/iyume/nonebot-plugin-wordle"
repository = "https://github.com/iyume/nonebot-plugin-wordle"
[project.optional-dependencies]
# place extra deps here
[tool.pdm]
editable-backend = "editables"
[tool.pdm.dev-dependencies]
dev = [
"mypy>=0.931",
"black>=22.1.0",
"pipdeptree>=2.2.1",
"types-Pillow>=9.0.6",
]
[tool.black]
line-length = 88
[tool.isort]
profile = "black"
[build-system]
requires = ["pdm-pep517"]
build-backend = "pdm.pep517.api"