Kumi
7d81a65b2a
Replaced the cron job for updating data with a background thread that runs every 5 minutes within the Flask app. Updated version to 0.3.7. This change ensures data is refreshed regularly without external dependencies like cron, improving deployment simplicity and reliability.
32 lines
No EOL
855 B
TOML
32 lines
No EOL
855 B
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "structables"
|
|
version = "0.3.7"
|
|
authors = [
|
|
{ name="Private.coffee Team", email="support@private.coffee" },
|
|
]
|
|
description = "A simple frontend for Instructables"
|
|
readme = "README.md"
|
|
license = { file="LICENSE" }
|
|
requires-python = ">=3.10"
|
|
classifiers = [
|
|
"Programming Language :: Python :: 3",
|
|
"License :: OSI Approved :: GNU Affero General Public License v3",
|
|
"Operating System :: OS Independent",
|
|
]
|
|
dependencies = [
|
|
"flask",
|
|
"bs4",
|
|
"markdown2[all]",
|
|
]
|
|
|
|
[project.scripts]
|
|
structables = "structables.main:main"
|
|
|
|
[project.urls]
|
|
"Homepage" = "https://git.private.coffee/privatecoffee/structables"
|
|
"Bug Tracker" = "https://git.private.coffee/privatecoffee/structables/issues"
|
|
"Source Code" = "https://git.private.coffee/privatecoffee/structables" |