Kumi
f422eded7b
All checks were successful
Python Package CI/CD / Publish to PyPI (push) Successful in 1m8s
Upgraded project version from 0.0.4 to 0.0.5 to mark the latest set of updates and enhancements. Ensure the documentation or upcoming features align with the new version.
25 lines
759 B
TOML
25 lines
759 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]"]
|
|
|
|
[project.scripts]
|
|
gitcloak = "gitcloak.app:main"
|
|
|
|
[project.urls]
|
|
"Homepage" = "https://git.private.coffee/PrivateCoffee/gitcloak"
|
|
"Bug Tracker" = "https://git.private.coffee/PrivateCoffee/gitcloak/issues"
|