41 lines
1003 B
TOML
41 lines
1003 B
TOML
[project]
|
|
name = "songsheet_generator"
|
|
version = "0.1.0"
|
|
description = ""
|
|
readme = "README.md"
|
|
requires-python = ">=3.9"
|
|
authors = [
|
|
{ name = "Leopold Fajtak", email = "leopold@fajtak.at" }
|
|
]
|
|
dependencies = [
|
|
"flet==0.26.0"
|
|
]
|
|
|
|
[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 = "at.fajtak.songsheet_generator"
|
|
|
|
# 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 = "Songsheet Generator"
|
|
|
|
# company name to display in about app dialogs
|
|
company = "Leopold Fajtak"
|
|
|
|
# copyright text to display in about app dialogs
|
|
copyright = "Copyright (C) 2025 by Leopold Fajtak"
|
|
|
|
[tool.flet.app]
|
|
path = "src/songsheet_generator"
|
|
|
|
[tool.uv]
|
|
dev-dependencies = [
|
|
"flet[all]==0.26.0",
|
|
]
|
|
|
|
[tool.poetry]
|
|
package-mode = false
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
flet = {extras = ["all"], version = "0.26.0"} |