2024-07-16 07:58:18 +00:00
|
|
|
[build-system]
|
|
|
|
requires = ["hatchling"]
|
|
|
|
build-backend = "hatchling.build"
|
|
|
|
|
|
|
|
[project]
|
|
|
|
name = "wikimore"
|
2024-08-18 13:55:47 +00:00
|
|
|
version = "0.1.3"
|
2024-07-16 07:58:18 +00:00
|
|
|
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",
|
2024-07-16 08:00:48 +00:00
|
|
|
"License :: OSI Approved :: MIT License",
|
2024-07-16 07:58:18 +00:00
|
|
|
"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"
|