Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/certbot/certbot.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakub Warmuz <jakub@warmuz.org>2015-09-27 11:10:39 +0300
committerJakub Warmuz <jakub@warmuz.org>2015-09-27 11:11:40 +0300
commit45a0cd2799a8e3f4b59164045ccf41bf54fec5f3 (patch)
treecca45513ed3c308c1c1bf9553a1bfd96c4312285 /letsencrypt-nginx/setup.py
parent3d638caeb7daca282035b8b7b46c2761d5a1c94a (diff)
Fix include_package_data.
Diffstat (limited to 'letsencrypt-nginx/setup.py')
-rw-r--r--letsencrypt-nginx/setup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/letsencrypt-nginx/setup.py b/letsencrypt-nginx/setup.py
index bf200b07b..4e770c8cb 100644
--- a/letsencrypt-nginx/setup.py
+++ b/letsencrypt-nginx/setup.py
@@ -40,11 +40,11 @@ setup(
],
packages=find_packages(),
+ include_package_data=True,
install_requires=install_requires,
entry_points={
'letsencrypt.plugins': [
'nginx = letsencrypt_nginx.configurator:NginxConfigurator',
],
},
- include_package_data=True,
)