44 lines
1.1 KiB
TOML
44 lines
1.1 KiB
TOML
[project]
|
|
name = "NoteNook"
|
|
version = "0.1.0"
|
|
description = "An app designed to build, store, and select meals for shopping purposes."
|
|
readme = "README.md"
|
|
requires-python = ">=3.9"
|
|
authors = [
|
|
{ name = "Nick Kalar", email = "nick@kalar.codes" }
|
|
]
|
|
dependencies = [
|
|
"flet >=0.70.0.dev0",
|
|
]
|
|
|
|
[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 = "codes.kalar"
|
|
|
|
# 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 = "NoteNook"
|
|
|
|
# company name to display in about app dialogs
|
|
company = "Nick Kalar"
|
|
|
|
# copyright text to display in about app dialogs
|
|
copyright = "Copyright (C) 2025 by Nick Kalar"
|
|
|
|
[tool.flet.app]
|
|
path = "src"
|
|
|
|
[tool.flet.macos]
|
|
entitlement."com.apple.security.files.user-selected.read-write" = true
|
|
|
|
[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"} |