-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
69 lines (47 loc) · 1.48 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[tool.poetry]
name = "ynet"
version = "13.0.0"
description = "Yemen Net Internet Services"
authors = ["Osama Mohammed <[email protected]>"]
readme = "README.md"
[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.omamkaz"
# 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 = "ynet"
# company name to display in about app dialogs
company = "omamkaz"
# copyright text to display in about app dialogs
copyright = "Copyright (C) 2024 by omamkaz"
build_number = 13
[tool.flet.flutter]
build_args = ["--release", "--analyze-size", "--target-platform", "android-arm"]
dependencies = ["flet_lottie"]
[tool.flet.compile]
app = true
packages = true
cleanup = true
[tool.flet.android]
split_per_abi = true
# arm64-v8a
build_arch = "armeabi-v7a"
adaptive_icon_background = "#3032FF"
[tool.flet.app]
path = "src"
exclude = ["media", "fastlane", "assets/animations"]
[tool.poetry.dependencies]
python = "^3.8"
flet = {version = "0.25.2"}
bs4 = {version = "0.0.2"}
requests = {version = "2.32.3"}
humanize = {version = "4.10.0"}
pydal = {version = "20241201.2"}
[tool.poetry.group.dev.dependencies]
flet = {extras = ["all"], version = "0.25.2"}
[tool.flet.flutter.pubspec.dependency_overrides]
file_picker = "8.1.4"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"