added frozendict dependency to setup.py

pull/15/head
Langenfeld 2021-12-13 14:22:04 +01:00
rodzic 400155583b
commit e6b1febc40
2 zmienionych plików z 3 dodań i 3 usunięć

Wyświetl plik

@ -1,3 +1,3 @@
requests
pytest
frozendict
frozendict

Wyświetl plik

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