-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
30 lines (25 loc) · 860 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
[project]
name = "IT_Remote"
version = "1.0.6"
description = "IT Remote, remotely troubleshoot PCs on your domain."
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"flet==0.25.2"
]
[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 = "KnightlyGains"
compile.app = true # --compile-app
compile.packages = true # --compile-packages
compile.cleanup = true # --cleanup-on-compile
# 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 = "IT Remote"
# company name to display in about app dialogs
company = "KnightlyGains"
# copyright text to display in about app dialogs
copyright = "Copyright (C) 2024 by Flet"
[tool.flet.app]
path = "src"