57 lines
1.4 KiB
TOML
57 lines
1.4 KiB
TOML
|
|
|
||
|
|
[build-system]
|
||
|
|
requires = ["hatchling"]
|
||
|
|
build-backend = "hatchling.build"
|
||
|
|
|
||
|
|
[project]
|
||
|
|
name = "WuttaFarm"
|
||
|
|
version = "0.1.0"
|
||
|
|
description = "Web app to expose / extend farmOS"
|
||
|
|
readme = "README.md"
|
||
|
|
authors = [
|
||
|
|
{name = "Lance Edgar", email = "lance@wuttaproject.org"}
|
||
|
|
]
|
||
|
|
maintainers = [
|
||
|
|
{name = "Lance Edgar", email = "lance@wuttaproject.org"}
|
||
|
|
]
|
||
|
|
classifiers = [
|
||
|
|
# TODO: remove this if you intend to publish your project
|
||
|
|
# (it's here by default, to prevent accidental publishing)
|
||
|
|
"Private :: Do Not Upload",
|
||
|
|
]
|
||
|
|
license = {text = "GNU General Public License v3"}
|
||
|
|
dependencies = [
|
||
|
|
"psycopg2",
|
||
|
|
|
||
|
|
"WuttaWeb[continuum]",
|
||
|
|
|
||
|
|
]
|
||
|
|
|
||
|
|
[project.scripts]
|
||
|
|
"wuttafarm" = "wuttafarm.cli:wuttafarm_typer"
|
||
|
|
|
||
|
|
[project.entry-points."paste.app_factory"]
|
||
|
|
"main" = "wuttafarm.web.app:main"
|
||
|
|
|
||
|
|
[project.entry-points."wutta.config.extensions"]
|
||
|
|
"wuttafarm" = "wuttafarm.config:WuttaFarmConfig"
|
||
|
|
|
||
|
|
[project.entry-points."wutta.web.menus"]
|
||
|
|
"wuttafarm" = "wuttafarm.web.menus:WuttaFarmMenuHandler"
|
||
|
|
|
||
|
|
|
||
|
|
# [project.urls]
|
||
|
|
# Homepage = "https://example.com/"
|
||
|
|
# Repository = "https://github.com/example/wuttafarm"
|
||
|
|
# Issues = "https://github.com/example/wuttafarm/issues"
|
||
|
|
# Changelog = "https://github.com/example/wuttafarm/blob/master/CHANGELOG.md"
|
||
|
|
|
||
|
|
|
||
|
|
# [tool.commitizen]
|
||
|
|
# version_provider = "pep621"
|
||
|
|
# tag_format = "v$version"
|
||
|
|
# update_changelog_on_bump = true
|
||
|
|
|
||
|
|
[tool.hatch.build.targets.wheel]
|
||
|
|
packages = ["wuttafarm"]
|