-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (31 loc) · 798 Bytes
/
pyproject.toml
File metadata and controls
37 lines (31 loc) · 798 Bytes
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
[tool.poetry]
name = "python-openbmclapi"
version = "2.2.0"
description = "The Python version of OpenBMCLAPI."
authors = ["SilianZ <silian_zheng@outlook.com>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.12"
loguru = "^0.7.2"
toml = "^0.10.2"
pyyaml = "^6.0.1"
aiohttp = "^3.10.1"
apscheduler = "^3.10.4"
zstandard = "^0.23.0"
aiofiles = "^24.1.0"
tqdm = "^4.66.5"
humanize = "^4.10.0"
python-socketio = "^5.11.3"
sqlalchemy = "^2.0.32"
psutil = "^6.0.0"
boto3 = "^1.35.90"
[[tool.poetry.source]]
name = "mirrors"
url = "https://pypi.tuna.tsinghua.edu.cn/simple/"
priority = "primary"
[tool.poetry.group.dev.dependencies]
boto3-stubs = {version = "1.35.90", extras = ["s3"]}
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"