From 61f1ffd0eb3c3e36c18bd22f9c068c39772a5e8f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micka=C3=ABl=20Schoentgen?= Date: Wed, 9 Jun 2021 17:14:27 +0200 Subject: [PATCH] Prevent installation of test files (#1087) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit (They’re still included in the package as per #182) --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 9058c281..f9885c00 100644 --- a/setup.py +++ b/setup.py @@ -81,7 +81,7 @@ setup( author=httpie.__author__, author_email='jakub@roztocil.co', license=httpie.__licence__, - packages=find_packages(), + packages=find_packages(include=['httpie', 'httpie.*']), entry_points={ 'console_scripts': [ 'http = httpie.__main__:main',