chore: replace requests with dulwich in dependencies

Swapped out `requests` for `dulwich` in dependencies to better handle Git repository interactions. This change ensures more efficient and specialized Git operations within the project. No changes to functionality expected.
This commit is contained in:
Kumi 2024-06-19 10:16:11 +02:00
parent 69a278de6e
commit 95ebe1157f
Signed by: kumi
GPG key ID: ECBCC9082395383F

View file

@ -15,7 +15,7 @@ classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = ["requests", "flask", "markdown2[all]"]
dependencies = ["dulwich", "flask", "markdown2[all]"]
[project.scripts]
gitcloak = "gitcloak.app:main"