Skip to content

Commit 76207bd

Browse files
committed
Create pyproject.toml
1 parent ccd0465 commit 76207bd

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

pyproject.toml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
[project]
2+
name = "IT Remote"
3+
version = "1.0.5"
4+
description = ""
5+
readme = "README.md"
6+
requires-python = ">=3.8"
7+
authors = [
8+
{name = "Steven Whitney"}
9+
]
10+
dependencies = [
11+
"flet==0.25.2"
12+
]
13+
14+
[tool.flet]
15+
# org name in reverse domain name notation, e.g. "com.mycompany".
16+
# Combined with project.name to build bundle ID for iOS and Android apps
17+
org = "KnightlyGains"
18+
compile.app = true # --compile-app
19+
compile.packages = true # --compile-packages
20+
compile.cleanup = true # --cleanup-on-compile
21+
22+
# project display name that is used as an app title on Android and iOS home screens,
23+
# shown in window titles and about app dialogs on desktop.
24+
product = "IT Remote"
25+
26+
# company name to display in about app dialogs
27+
company = "Steven Whitney"
28+
29+
# copyright text to display in about app dialogs
30+
copyright = "Copyright (C) 2024 by Flet"
31+
32+
[tool.flet.app]
33+
path = ".\"

0 commit comments

Comments
 (0)