From 1b51909ea622c41091ee877d8766ac9db2ece379 Mon Sep 17 00:00:00 2001 From: Sheng Date: Fri, 27 Apr 2018 17:58:22 +0800 Subject: [PATCH] Updated setup.py MANIFEST.in --- MANIFEST.in | 13 ++++++++++++- setup.py | 1 + 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/MANIFEST.in b/MANIFEST.in index 6b46e4d..bb85ddd 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,2 +1,13 @@ include LICENSE -recursive-include tests *.py *.key *.db known_hosts* + +recursive-include tests * +prune tests/__pycache__ +prune tests/.pytest_cache + +recursive-include webssh * +prune webssh/__pycache__ +prune webssh/.pytest_cache + +global-exclude *.pyc +global-exclude *.log +global-exclude .coverage diff --git a/setup.py b/setup.py index ce92ee1..b2fb3a7 100644 --- a/setup.py +++ b/setup.py @@ -21,6 +21,7 @@ setup( wssh = webssh.main:main ''', license='MIT', + include_package_data=True, classifiers=[ 'Programming Language :: Python', 'Programming Language :: Python :: 2',