23 lines
678 B
TOML
23 lines
678 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"]
|
||
|
|
||
|
[project.urls]
|
||
|
"Homepage" = "https://git.private.coffee/kumi/gitcloak"
|
||
|
"Bug Tracker" = "https://git.private.coffee/kumi/gitcloak/issues"
|