forked from ChinaIceF/PyQt-SiliconUI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
39 lines (34 loc) · 975 Bytes
/
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
[project]
name = "PySide6-SiliconUI"
version = "1.0.1"
authors = [
{ name = "ChinaIceF", email = "[email protected]" },
{ name = "rainzee wang", email = "[email protected]" },
{ name = "H1DDENADM1N", email = "[email protected]" },
]
description = "Default template for PDM package"
readme = "README.md"
license = { file = "LICENSE", text = "GPLv3" }
requires-python = "==3.12.*"
dependencies = [
"PySide6==6.6.3.1",
"typing-extensions>=4.12.2",
"numpy==1.26.4",
]
[project.urls]
Repository = "https://github.com/H1DDENADM1N/PySide6-SiliconUI"
[tool.pdm]
distribution = false
[tool.pdm.dev-dependencies]
lint = ["ruff>=0.5.0"]
build = ["nuitka>=2.3.10"]
profile = ["viztracer>=0.16.3"]
[tool.ruff]
line-length = 120
target-version = "py38"
[tool.ruff.lint]
select = ["I", "E", "W", "F", "C", "Q", "PT", "UP", "PYI", "T20"]
[tool.pyright]
pythonVersion = "3.8"
pythonPlatform = "All"
typeCheckingMode = "standard"