Prevent installation of test files (#1087)

(They’re still included in the package as per #182)
This commit is contained in:
Mickaël Schoentgen 2021-06-09 17:14:27 +02:00 committed by GitHub
parent 9792513c68
commit 61f1ffd0eb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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',