From: Georgios Atheridis Date: Wed, 23 Mar 2022 08:48:02 +0000 (+0200) Subject: bugfix X-Git-Url: https://git.atheridis.org/?a=commitdiff_plain;h=6bde22aa41b66b4b336141cda3e27a387e0eabd8;p=personal%2Faptbot.git bugfix --- diff --git a/aptbot/__main__.py b/aptbot/__main__.py index 98132a3..1897fbc 100644 --- a/aptbot/__main__.py +++ b/aptbot/__main__.py @@ -200,6 +200,7 @@ def update(s: socket.socket): def main(): argsv = aptbot.args.parse_arguments() + os.makedirs(CONFIG_PATH, exist_ok=True) if argsv.enable: listener() diff --git a/setup.py b/setup.py index b286a6f..6171504 100644 --- a/setup.py +++ b/setup.py @@ -22,7 +22,8 @@ setuptools.setup( 'aptbot=aptbot.__main__:main', ], }, + install_requires=[ + 'dotenv', + ], python_requires=">=3.7", ) - -