-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
47 lines (40 loc) · 1.25 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
[tool.poetry]
name = "yiri-onebot"
version = "0.0.1-beta.1"
description = "YiriOneBot 是一个低耦合、异步的高性能OneBot 11 SDK。"
authors = ["XYCode Kerman <[email protected]>"]
license = "LGPL-3.0"
readme = "README.md"
homepage = "https://github.com/YiriMiraiProject/YiriOneBot"
repository = "https://github.com/YiriMiraiProject/YiriOneBot"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Communications",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Framework :: AsyncIO",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
[[tool.poetry.packages]]
include = "yiriob"
[tool.poetry.dependencies]
python = ">=3.10,<3.13"
pydantic = "^2.8.2"
rich = "^13.7.1"
websockets = "^12.0"
[tool.poetry.group.dev.dependencies]
pytest = "^8.2.2"
coverage = "^7.6.0"
pytest-cov = "^5.0.0"
pytest-asyncio = "^0.23.8"
pylint = "^3.2.5"
[tool.coverage.report]
omit = ['tests/*.py']
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"