gitcloak/pyproject.toml
Kumi d15b0a53dc
chore: bump version to 0.0.2
Updated the version from 0.0.1 to 0.0.2 to reflect recent changes
and improvements in the project. This version increment is a
preparatory step for the upcoming release.
2024-06-19 09:33:43 +02:00

26 lines
760 B
TOML

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