From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on gnuweeb.org X-Spam-Level: X-Spam-Status: No, score=-0.8 required=5.0 tests=ALL_TRUSTED,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,NO_DNS_FOR_FROM,URIBL_BLOCKED autolearn=no autolearn_force=no version=3.4.6 Received: from localhost.localdomain (unknown [175.158.50.43]) by gnuweeb.org (Postfix) with ESMTPSA id 3106481A24; Wed, 18 Jan 2023 17:54:47 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=gnuweeb.org; s=default; t=1674064489; bh=kGVyLuh4LOH14YZozbGdyL110YFruaaTfvg0XzkduwI=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=FG+mwbyfWDJsvpyCoQ4Ob71JWm4fbviTsKkEJGjq8XppTJWeM9QBoHIKu2kLl2PYt 68KsvxsKqVxVGCBKRdAyguP+Z3wuZBgpE5lKxjcMLQXp0R8+ukvyiM8OZpWnnBfkzb 5AqGhbl3LAhDRyXTM0N1wo9UeqywrDFLVhihk12nqp2+7H+7aV0RdULuCYiKKVfpUY Wh3xUfi+2ZHy1p9vwJwmKv7zH8BIt3iIkXhkjuD1sknsoCqaJP129akfTp8bnYRoTk MEYPXwDCOb4l3Y3loSvlueNQG6YUD9FWN96oWPKCIVcTAlWYfujRLJWt+uyYsZucLL PgHeQwxTvtGDg== From: Muhammad Rizki To: Ammar Faizi Cc: Muhammad Rizki , Alviro Iskandar Setiawan , GNU/Weeb Mailing List Subject: [PATCH v2 16/17] refactor: Move requirements.txt Date: Thu, 19 Jan 2023 00:53:55 +0700 Message-Id: <20230118175356.1853-17-kiizuha@gnuweeb.org> X-Mailer: git-send-email 2.34.1.windows.1 In-Reply-To: <20230118175356.1853-1-kiizuha@gnuweeb.org> References: <20230118175356.1853-1-kiizuha@gnuweeb.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: Move `requirements.txt` to the outside of the `telegram` directory and update the required dependencies in it. This requirements file is for both Telegram and Discord so we don't need to add another requirements file in their directory. Signed-off-by: Muhammad Rizki --- daemon/{telegram => }/requirements.txt | 2 ++ 1 file changed, 2 insertions(+) rename daemon/{telegram => }/requirements.txt (81%) diff --git a/daemon/telegram/requirements.txt b/daemon/requirements.txt similarity index 81% rename from daemon/telegram/requirements.txt rename to daemon/requirements.txt index 193cec9..3a16421 100644 --- a/daemon/telegram/requirements.txt +++ b/daemon/requirements.txt @@ -8,3 +8,5 @@ tgcrypto xmltodict unicode python-slugify +typing-extensions +discord.py -- Muhammad Rizki