FunkyJuiceRecipes/pyproject.toml

35 lines
764 B
TOML
Raw Normal View History

2025-12-18 15:49:31 +00:00
[project]
name = "funkyjuicerecipes"
version = "0.1.0"
requires-python = ">=3.10"
dependencies = [
"toga==0.5.3",
"peewee>=3.18.3"
]
[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]
where = ["src"]