forked from LagrangeDev/lagrange-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (36 loc) · 1.07 KB
/
pyproject.toml
File metadata and controls
40 lines (36 loc) · 1.07 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
[project]
name = "lagrange-python"
version = "0.0.2"
description = "An Python Implementation of NTQQ PC Protocol"
authors = [
{name="linwenxuan05"},
{name="wyapx"},
]
dependencies = [
"typing-extensions>=4.7.0",
"cryptography>=40.0.0",
]
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.5"]
dev = ["pdm", "pdm-backend>=0.3.0"]
[tool.pdm]
distribution = true
[tool.pdm.build]
includes = ["lagrange"]
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"