-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (44 loc) · 1.42 KB
/
pyproject.toml
File metadata and controls
55 lines (44 loc) · 1.42 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
[project]
name = "OpenInsectID"
version = "0.1.1"
description = "Recognize an insect in seconds with Open Insect ID"
readme = "README.md"
requires-python = ">=3.9"
authors = [
{ name = "Elnix90", email = "elnix91@gmail.com" },
{ name = "YoannDev90", email = "yoanndev@outlook.fr" },
{ name = "LuckyTheCookie", email = "" }
]
dependencies = [
"flet==0.28.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 = "org"
# 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 = "Open Insect Id"
# company name to display in about app dialogs
company = "Flet"
# copyright text to display in about app dialogs
copyright = "Copyright (c) 2025 Open Insect-ID"
[tool.flet.app]
path = "src"
[tool.uv]
dev-dependencies = [
"flet[all]==0.28.3",
]
[tool.poetry]
package-mode = false
[tool.poetry.group.dev.dependencies]
flet = {extras = ["all"], version = "0.28.3"}
[tool.flet.android]
split_per_abi = true
[tool.flet.android.permission] # --android-permissions
"android.permission.CAMERA" = true
"android.permission.READ_EXTERNAL_STORAGE" = true
"android.permission.WRITE_EXTERNAL_STORAGE" = true
"android.permission.MANAGE_EXTERNAL_STORAGE" = true
[tool.flet.android.feature] # --android-features
"android.hardware.camera" = false