Kumi
6edc966f45
- Updated dependencies to include all optional Markdown2 extensions - Improved file content handling to better support non-UTF-8 encodings - Refined CSS styling for better readability and consistency - Added new folder and file icons for directory listings - Modified template paths for consistent asset loading - Allowed navigation to parent directories in the file viewer These changes enhance user experience by improving file handling, visual consistency, and navigation within the directory structure.
22 lines
683 B
TOML
22 lines
683 B
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "gitcloak"
|
|
version = "0.0.1"
|
|
authors = [{ name = "Kumi Mitterer", email = "gitcloak@kumi.email" }]
|
|
description = "Simple Python-based private frontend for GitHub repositories"
|
|
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 = ["requests", "flask", "markdown2[all]"]
|
|
|
|
[project.urls]
|
|
"Homepage" = "https://git.private.coffee/kumi/gitcloak"
|
|
"Bug Tracker" = "https://git.private.coffee/kumi/gitcloak/issues"
|