forked from LagrangeDev/lagrange-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
63 lines (56 loc) · 1.49 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
[project]
name = "lagrange-python"
version = "0.1.3"
description = "An Python Implementation of NTQQ PC Protocol"
authors = [
{name="linwenxuan05"},
{name="wyapx"},
]
dependencies = [
"typing-extensions>=4.7.0",
"cryptography>=40.0.0",
"qrcode>=7.4.2",
]
keywords = ["QQ", "Tencent", "NTQQ", "Framework", "Bot", "asyncio"]
classifiers = [
"Development Status :: 3 - Alpha",
"Framework :: AsyncIO",
"Operating System :: OS Independent",
"License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)",
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
]
requires-python = ">=3.9"
[project.optional-dependencies]
faster = ["ftea>=0.1.8"]
loguru = [
"loguru>=0.7.2",
]
[tool.pdm]
distribution = true
[tool.pdm.build]
includes = ["lagrange"]
[tool.pdm.dev-dependencies]
dev = [
"loguru>=0.7.2",
]
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.ruff]
line-length = 120
target-version = "py39"
exclude = ["pdm_build.py"]
[tool.ruff.lint]
select = ["E", "W", "F", "UP", "C", "T", "Q"]
ignore = ["E402", "F403", "F405", "C901", "UP037"]
[tool.pyright]
pythonPlatform = "All"
pythonVersion = "3.9"
typeCheckingMode = "basic"
reportShadowedImports = false
disableBytesTypePromotions = true