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:
parent
69a278de6e
commit
95ebe1157f
1 changed files with 1 additions and 1 deletions
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue