forked from cscs181/QQ-GitHub-Bot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (44 loc) · 1.04 KB
/
pyproject.toml
File metadata and controls
50 lines (44 loc) · 1.04 KB
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
[tool.poetry]
name = "qq-github-bot"
version = "0.1.5"
description = "GitHub Bot for QQ"
authors = ["yanyongyu <yanyongyu_1@126.com>"]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.8"
psutil = "^5.7.2"
httpx = "^0.19.0"
Jinja2 = "^3.0.0"
unidiff = "^0.6.0"
humanize = "^3.5.0"
pydantic = "^1.8.1"
Markdown = "^3.3.4"
sentry-sdk = "^1.0.0"
playwright = "^1.9.2"
typing-extensions = "^3.7.4"
nonebot2 = "^2.0.0-alpha.15"
nonebot-adapter-cqhttp = "^2.0.0-alpha.15"
redis = {version = "^3.5.3", extras = ["hiredis"]}
[tool.poetry.dev-dependencies]
isort = "^5.9.3"
black = "^21.8b0"
nb-cli = "^0.5.0"
# nonebot-plugin-test = "^0.2.0"
# [[tool.poetry.source]]
# name = "aliyun"
# url = "https://mirrors.aliyun.com/pypi/simple/"
# default = true
[tool.black]
line-length = 80
extend-exclude = '''
'''
[tool.isort]
profile = "black"
line_length = 80
length_sort = true
skip_gitignore = true
force_sort_within_sections = true
extra_standard_library = "typing_extensions"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"