gitcloak/pyproject.toml
Kumi 8f0ee21ed0
All checks were successful
Python Package CI/CD / Publish to PyPI (push) Successful in 46s
feat: add repository cloning instructions in README
Includes instructions for cloning repositories using the git client over HTTP(S) in the README. Updated project version to 0.0.6 to reflect these changes. Minor formatting improvements in index.html to enhance readability.
2024-06-19 11:53:10 +02:00

26 lines
771 B
TOML

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "gitcloak"
version = "0.0.6"
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"