2025-12-18 15:49:31 +00:00
|
|
|
[project]
|
|
|
|
|
name = "funkyjuicerecipes"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
requires-python = ">=3.10"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"toga==0.5.3",
|
2025-12-18 20:30:09 +00:00
|
|
|
"peewee>=3.18.3",
|
|
|
|
|
"pytest>=9.0.2",
|
2025-12-18 15:49:31 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[tool.uv]
|
|
|
|
|
environments = [
|
|
|
|
|
"sys_platform == 'linux'",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[tool.briefcase]
|
|
|
|
|
project_name = "FunkyJuice Recipes"
|
|
|
|
|
bundle = "com.TargonProducts"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
url = "https://example.com"
|
|
|
|
|
author = "Funky Waddle"
|
|
|
|
|
author_email = "you@example.com"
|
|
|
|
|
license = "MIT"
|
|
|
|
|
|
|
|
|
|
[tool.briefcase.app.funkyjuicerecipes]
|
|
|
|
|
formal_name = "FunkyJuice Recipes"
|
|
|
|
|
description = "A python application for managing e-juice recipes"
|
|
|
|
|
sources = ["src/funkyjuicerecipes"]
|
|
|
|
|
requires = ["toga==0.5.3", "peewee>=3.18.3"]
|
|
|
|
|
icon = "src/funkyjuicerecipes/resources/icon"
|
|
|
|
|
|
|
|
|
|
[tool.pytest.ini_options]
|
|
|
|
|
testpaths = ["tests"]
|
|
|
|
|
|
|
|
|
|
[tool.setuptools.packages.find]
|
2025-12-18 20:30:09 +00:00
|
|
|
where = ["src"]
|