2024-06-18 15:00:05 +00:00
|
|
|
[build-system]
|
|
|
|
requires = ["hatchling"]
|
|
|
|
build-backend = "hatchling.build"
|
|
|
|
|
|
|
|
[project]
|
|
|
|
name = "gitcloak"
|
2024-06-19 08:49:09 +00:00
|
|
|
version = "0.0.5"
|
2024-06-19 07:23:45 +00:00
|
|
|
authors = [{ name = "Private.coffee Team", email = "support@private.coffee" }]
|
2024-06-18 15:00:05 +00:00
|
|
|
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",
|
|
|
|
]
|
2024-06-19 08:16:11 +00:00
|
|
|
dependencies = ["dulwich", "flask", "markdown2[all]"]
|
2024-06-18 15:00:05 +00:00
|
|
|
|
2024-06-19 07:23:45 +00:00
|
|
|
[project.scripts]
|
|
|
|
gitcloak = "gitcloak.app:main"
|
|
|
|
|
2024-06-18 15:00:05 +00:00
|
|
|
[project.urls]
|
2024-06-19 07:23:45 +00:00
|
|
|
"Homepage" = "https://git.private.coffee/PrivateCoffee/gitcloak"
|
|
|
|
"Bug Tracker" = "https://git.private.coffee/PrivateCoffee/gitcloak/issues"
|