-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
executable file
·54 lines (45 loc) · 1.2 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
48
49
50
51
52
53
54
[project]
name = "flet-page-manager"
dynamic = ["version"]
description = "A simple window manager for Flet that allows you to easily build multi-window applications."
readme = "README.md"
authors = [
{name = "Zhan Rongrui", email = "[email protected]"},
]
dependencies = [
"flet>=0.22.1",
"loguru>=0.7.2",
"pydantic>=2.0.0"
]
requires-python = ">=3.10"
license = {text = "MIT"}
[project.urls]
Homepage = "https://github.com/zrr1999/flet-page-manager"
Repository = "https://github.com/zrr1999/flet-page-manager"
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.ruff.lint]
select = ["F", "I", "B", "C4", "PGH", "W", "YTT"]
ignore = ["PGH003", "E501", "E741", "B008", "B904", "B023", "F841", "F821", "F841"]
[tool.ruff.lint.isort]
known-first-party = [
"page_manager",
]
required-imports = ["from __future__ import annotations"]
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401", "I002"]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
skip-magic-trailing-comma = false
line-ending = "auto"
[tool.pdm.version]
source = "scm"
[tool.pdm.build]
includes = [
"page_manager",
]
[build-system]
requires = ["pdm-backend", "pdm-pyfuture"]
build-backend = "pdm.backend"