gitcloak/pyproject.toml
Kumi 4660f5a7ca
feat: add proxy for Git client requests to GitHub
Introduced a new route to handle Git client requests, proxying them to GitHub. This includes support for methods like GET, POST, PUT, DELETE, and PATCH. Added the `requests` library to manage the HTTP requests and updated imports accordingly.

This enhancement allows Git client interactions with the app to be seamlessly redirected to corresponding GitHub repositories, improving integration and user experience.
2024-06-19 11:49:34 +02:00

25 lines
771 B
TOML

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "gitcloak"
version = "0.0.5"
authors = [{ name = "Private.coffee Team", email = "support@private.coffee" }]
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 = ["dulwich", "flask", "markdown2[all]", "requests"]
[project.scripts]
gitcloak = "gitcloak.app:main"
[project.urls]
"Homepage" = "https://git.private.coffee/PrivateCoffee/gitcloak"
"Bug Tracker" = "https://git.private.coffee/PrivateCoffee/gitcloak/issues"