-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
53 lines (47 loc) · 1.01 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
[build-system]
requires = ["setuptools >= 61.0", "setuptools_scm"]
build-backend = "setuptools.build_meta"
[project]
name = "wishing_star"
version = "0.0.0"
readme = "README.md"
requires-python = ">=3.7"
authors = [
{ name="Zhihao Lin", email="[email protected]" },
]
description = "Discord bot"
dependencies = [
"discord >= 2.3.1",
"openai >= 0.27.8",
"pyYAML >= 6.0",
"requests >= 2.31.0",
"typing-extensions >= 4.1.1",
]
[project.optional-dependencies]
dev = [
"black >= 22.10.0",
"docformatter >= 1.6.3",
"mypy >= 0.982",
"ruff >= 0.0.275",
"types-PyYAML >= 6.0.12.10",
"types-requests >= 2.31.0",
]
[tool.mypy]
strict = true
pretty = true
ignore_missing_imports = true
warn_return_any = false
[tool.black]
line-length = 100
target-version = ["py311"]
color = true
preview = true
[tool.ruff]
line-length = 100
src = ["wishing_star"]
[tool.docformatter]
make-summary-multi-line = true
pre-summary-newline = true
recursive = true
wrap-summaries = 80
wrap-descriptions = 80