From d86ade674d72e13d7772663c2ad79c88969fbfe7 Mon Sep 17 00:00:00 2001 From: Jakub Warmuz Date: Wed, 29 Jul 2015 19:56:44 +0000 Subject: [PATCH] include_package_data in apache and nginx plugins ref https://github.com/letsencrypt/letsencrypt/issues/625 --- letsencrypt-apache/setup.py | 1 + letsencrypt-nginx/setup.py | 1 + 2 files changed, 2 insertions(+) diff --git a/letsencrypt-apache/setup.py b/letsencrypt-apache/setup.py index fac5b6b88..39f4b68e1 100644 --- a/letsencrypt-apache/setup.py +++ b/letsencrypt-apache/setup.py @@ -20,4 +20,5 @@ setup( 'apache = letsencrypt_apache.configurator:ApacheConfigurator', ], }, + include_package_data=True, ) diff --git a/letsencrypt-nginx/setup.py b/letsencrypt-nginx/setup.py index bd8e8976d..92b974974 100644 --- a/letsencrypt-nginx/setup.py +++ b/letsencrypt-nginx/setup.py @@ -19,4 +19,5 @@ setup( 'nginx = letsencrypt_nginx.configurator:NginxConfigurator', ], }, + include_package_data=True, )