From 5b2743a26a966505a88ed1bf55fe109b7c916214 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Richard=20Kub=C3=AD=C4=8Dek?= Date: Thu, 16 Jan 2025 14:03:43 +0100 Subject: [PATCH] Update setup.py --- setup.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index eabfab0..463856d 100644 --- a/setup.py +++ b/setup.py @@ -2,11 +2,14 @@ from setuptools import setup, find_namespace_packages setup( name='superfaktura_client', - version='1.0.0', + version='0.0.1', packages=find_namespace_packages(), url='https://github.com/eledio-helpers/superfaktura-client', license='', author='Richard Kubíček', author_email='kubicekr@eledio.com', - description='' + install_requires=[ + "requests", + "python-dotenv" + ], )