fix: add immutabledict to setup

pull/27/head
Langenfeld 2024-01-18 10:18:42 +01:00
rodzic 0ecb1ea2b9
commit 271d8bee2e
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -5,7 +5,7 @@ with open("README.md") as readme_file:
setup_args = dict( setup_args = dict(
name="py-gitea", name="py-gitea",
version="0.2.7", version="0.2.8",
description="A python wrapper for the Gitea API", description="A python wrapper for the Gitea API",
long_description_content_type="text/markdown", long_description_content_type="text/markdown",
long_description=README, long_description=README,
@ -20,7 +20,7 @@ setup_args = dict(
install_requires = [ install_requires = [
"requests", "requests",
"frozendict", "immutabledict",
] ]
extras_require = {"test": ["pytest"]} extras_require = {"test": ["pytest"]}