-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (45 loc) · 1.06 KB
/
pyproject.toml
File metadata and controls
53 lines (45 loc) · 1.06 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
[project]
name = "flet-build-test"
version = "0.1.0"
description = "App to test flet build."
requires-python = ">=3.10"
authors = [{ name = "Appveyor Systems Inc.", email = "hello@flet.dev" }]
dependencies = [
"flet",
"flet-ads",
"flet-audio",
"flet-audio-recorder",
"flet-charts",
"flet-datatable2",
"flet-flashlight",
"flet-geolocator",
"flet-lottie",
"flet-map",
"flet-permission-handler",
"flet-rive",
"flet-secure-storage",
"flet-video",
"flet-webview",
]
[dependency-groups]
dev = [
"flet[all]",
]
[tool.uv]
prerelease = "disallow"
# Docs: https://docs.flet.dev/publish/
[tool.flet]
org = "com.flet"
product = "flet-build-test"
company = "Flet"
copyright = "Copyright (C) 2025 by Flet"
[tool.flet.app]
path = "src"
[tool.flet.android.meta_data]
"com.google.android.gms.ads.APPLICATION_ID" = "ca-app-pub-3940256099942544~3347511713"
[tool.flet.app.boot_screen]
show = true
message = "Preparing the app for its first launch…"
[tool.flet.app.startup_screen]
show = true
message = "Getting things ready…"