From b8f22b2ab111f33280ee57a438fba8360e4381d2 Mon Sep 17 00:00:00 2001 From: Xiretza Date: Tue, 27 Oct 2020 10:57:59 +0100 Subject: [PATCH] Actually exclude tests from setup.py installation Without the glob, the tests module is still installed using `setup.py install`. Fixes 4ce2c00. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 676eda28..a498980a 100755 --- a/setup.py +++ b/setup.py @@ -230,7 +230,7 @@ def main(argv): ], keywords='telegram api chat client library messaging mtproto', packages=find_packages(exclude=[ - 'telethon_*', 'tests' + 'telethon_*', 'tests*' ]), install_requires=['pyaes', 'rsa'], extras_require={