-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
79 lines (64 loc) · 1.85 KB
/
pyproject.toml
File metadata and controls
79 lines (64 loc) · 1.85 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
[project]
name = "tempo-gui"
version = "0.1.0"
description = ""
readme = "README.md"
requires-python = ">=3.12"
authors = [
{ name = "Flet developer", email = "you@example.com" }
]
dependencies = [
"flet==0.28.3",
"requests>=2.32.4",
"screeninfo>=0.8.1",
"tempo-core",
"tomlkit>=0.13.3",
]
[tool.flet]
# org name in reverse domain name notation, e.g. "com.mycompany".
# Combined with project.name to build bundle ID for iOS and Android apps
org = "com.mycompany"
# project display name that is used as an app title on Android and iOS home screens,
# shown in window titles and about app dialogs on desktop.
product = "tempo-gui"
# company name to display in about app dialogs
company = "Flet"
# copyright text to display in about app dialogs
copyright = "Copyright (C) 2025 by Flet"
[tool.flet.app]
path = "src"
[tool.uv]
dev-dependencies = [
"commitizen>=4.8.3",
"flet[all]==0.28.3",
"pre-commit>=4.2.0",
"pyright>=1.1.403",
"ruff>=0.12.2",
"uv>=0.9.13",
]
[tool.uv.sources]
tempo-core = { git = "https://www.github.com/Tempo-Organization/tempo-core", rev = "unit_testing" }
[tool.poetry]
package-mode = false
[tool.poetry.group.dev.dependencies]
flet = {extras = ["all"], version = "0.28.3"}
[project.urls]
Documentation = "https://github.com/Mythical-Github/tempo-gui/blob/main/README.md"
Issues = "https://github.com/Mythical-Github/tempo-gui/issues"
Source = "https://github.com/Mythical-Github/tempo-gui"
[tool.pyright]
extraPaths = [".venv/Lib/site-packages"]
[tool.commitizen]
name = "cz_conventional_commits"
tag_format = "$version"
version_scheme = "semver2"
version_provider = "pep621"
update_changelog_on_bump = true
[tool.typos]
[tool.typos.default]
extend-words = { ue4ss = "ue4ss", ue = "ue" }
[build-system]
requires = ["uv_build>=0.7.19,<0.8"]
build-backend = "uv_build"
[project.scripts]
tempo_cli = "tempo_gui.__main__:main"