wikimore/pyproject.toml
Kumi dcb798450f
chore: add executable flag and bump version
Enables the entrypoint script by setting its executable permission in the Dockerfile,
ensuring proper container startup. Also updates the project version for the new release.
2025-02-26 09:15:11 +01:00

26 lines
789 B
TOML

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "wikimore"
version = "0.1.10"
authors = [{ name = "Private.coffee Team", email = "support@private.coffee" }]
description = "A simple frontend for Wikimedia wikis"
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = ["flask", "bs4"]
[project.scripts]
wikimore = "wikimore.app:main"
[project.urls]
"Homepage" = "https://git.private.coffee/privatecoffee/wikimore"
"Bug Tracker" = "https://git.private.coffee/privatecoffee/wikimore/issues"
"Source Code" = "https://git.private.coffee/privatecoffee/wikimore"