PySide6-Code-Tutorial/pyproject.toml

42 lines
893 B
TOML
Raw Normal View History

[tool.poetry]
name = "pyside6-code-tutorial"
version = "0.1.0"
description = "用代码实例讲解PySide6"
authors = ["muzing <muzi2001@foxmail.com>"]
license = "GPL-3.0"
2022-06-10 12:34:25 +08:00
repository = "https://github.com/muziing/PySide6-Code-Tutorial"
2023-08-12 23:01:00 +08:00
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/muziing/PySide6-Code-Tutorial/issues"
# 使用清华 pypi 镜像
[[tool.poetry.source]]
2023-08-12 23:01:00 +08:00
name = "tsinghua_mirror"
url = "https://pypi.tuna.tsinghua.edu.cn/simple"
2023-08-12 23:01:00 +08:00
priority = "default"
[tool.poetry.dependencies]
python = ">=3.9,<3.12"
2023-11-17 22:17:50 +08:00
pyside6 = "^6.6.0"
2023-08-12 23:01:00 +08:00
[tool.poetry.group.dev.dependencies]
2023-11-17 22:17:50 +08:00
black = "^23.11.0"
2023-03-19 15:50:31 +08:00
isort = "^5.12.0"
2023-11-17 22:17:50 +08:00
mypy = "^1.7.0"
pre-commit = "^3.5.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
2022-06-05 23:29:49 +08:00
[tool.black]
line-length = 100
2022-06-05 23:29:49 +08:00
[tool.isort]
profile = "black"
line_length = 100
2022-06-05 23:29:49 +08:00
[tool.mypy]
2023-08-12 23:01:00 +08:00
python_version = "3.11"
2022-06-05 23:29:49 +08:00
warn_return_any = true