From 4b4a3ab7197abe5c5f88d6c7db4a61a141586b38 Mon Sep 17 00:00:00 2001 From: Benjamin Dauvergne Date: Thu, 21 Dec 2017 12:25:52 +0100 Subject: [PATCH 245/246] auth_fc: add to MANIFEST.in --- MANIFEST.in | 3 +++ setup.py | 1 + 2 files changed, 4 insertions(+) diff --git a/MANIFEST.in b/MANIFEST.in index ccae01cb..ce0bcccd 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -8,6 +8,7 @@ include tox.ini .coveragerc # static recursive-include src/authentic2/static *.css *.js *.ico *.gif *.png *.jpg recursive-include src/authentic2/manager/static *.css *.js *.png +recursive-include src/authentic2_auth_fc/static *.css *.svg *.png # templates recursive-include src/authentic2/saml/templates *.html *.txt *.xml @@ -23,6 +24,7 @@ recursive-include src/authentic2/manager/templates *.html recursive-include src/authentic2_auth_saml/templates/authentic2_auth_saml *.html recursive-include src/authentic2_auth_oidc/templates/authentic2_auth_oidc *.html recursive-include src/authentic2_idp_oidc/templates/authentic2_idp_oidc *.html +recursive-include src/authentic2_auth_fc/templates/authentic2_auth_fc *.html recursive-include src/authentic2/vendor/totp_js/js *.js recursive-include src/authentic2/saml/fixtures *.json @@ -43,6 +45,7 @@ recursive-include src/django_rbac/locale *.po *.mo recursive-include src/authentic2_auth_saml/locale *.po *.mo recursive-include src/authentic2_auth_oidc/locale *.po *.mo recursive-include src/authentic2_idp_oidc/locale *.po *.mo +recursive-include src/authentic2_auth_fc/locale *.po *.mo recursive-include src/authentic2 README xrds.xml *.txt yadis.xrdf recursive-include src/authentic2_provisionning_ldap/tests *.ldif diff --git a/setup.py b/setup.py index a80ff3fa..7c5e01ed 100755 --- a/setup.py +++ b/setup.py @@ -169,5 +169,6 @@ setup(name="authentic2", 'authentic2-idp-cas = authentic2_idp_cas:Plugin', 'authentic2-idp-oidc = authentic2_idp_oidc:Plugin', 'authentic2-provisionning-ldap = authentic2_provisionning_ldap:Plugin', + 'authentic2-auth-fc = authentic2_auth_fc:Plugin', ], }) -- 2.11.0