Move plugins to top-level

This commit is contained in:
Jakub Warmuz
2015-05-10 12:26:54 +00:00
parent 3a6bd7123d
commit d408ec5a95
99 changed files with 199 additions and 219 deletions
+4 -4
View File
@@ -115,12 +115,12 @@ setup(
'jws = letsencrypt.acme.jose.jws:CLI.run',
],
'letsencrypt.plugins': [
'apache = letsencrypt.client.plugins.apache.configurator'
':ApacheConfigurator',
'nginx = letsencrypt.client.plugins.nginx.configurator'
':NginxConfigurator',
'standalone = letsencrypt.client.plugins.standalone.authenticator'
':StandaloneAuthenticator',
# to be moved to separate pypi packages
'apache = letsencrypt_apache.configurator:ApacheConfigurator',
'nginx = letsencrypt_nginx.configurator:NginxConfigurator',
],
},