diff --git a/MANIFEST.in b/MANIFEST.in index aa793941a..f7d3c0b6c 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,3 +1,4 @@ +recursive-include data * recursive-include tests *.db *.py recursive-include media *.css *.js *.ico *.gif *.png *.jpg README recursive-include authentic2 README fixtures/*.json templates/*.html templates/*/*.html js/*.js templates/*/*/*.html locale/*/*/*.po xrds.xml *.txt yadis.xrdf @@ -7,3 +8,4 @@ include README.rst include authentic2/vendor/oath/TODO include authentic2/vendor/totp_js/README.rst include diagnose.py +include authentic2/auth2_auth/auth2_ssl/authentic_ssl.vhost diff --git a/authentic2/__init__.py b/authentic2/__init__.py index 7817e27b7..4ab8f5fc7 100644 --- a/authentic2/__init__.py +++ b/authentic2/__init__.py @@ -1,2 +1,2 @@ # The version of Authentic -VERSION = "1.9.0" +VERSION = "1.9.1" diff --git a/setup.py b/setup.py index 616549717..4d47026aa 100755 --- a/setup.py +++ b/setup.py @@ -35,10 +35,14 @@ distutils.core.setup(name="authentic2", 'authentic2/auth2_auth/templatetags', 'authentic2/authsaml2', 'authentic2/idp', + 'authentic2/idp/idp_cas', 'authentic2/idp/idp_openid', 'authentic2/idp/idp_openid/templatetags', 'authentic2/idp/saml', 'authentic2/idp/templatetags', + 'authentic2/idp/management', + 'authentic2/idp/management/commands', + 'authentic2/idp/migrations', 'authentic2/saml', 'authentic2/saml/management', 'authentic2/saml/management/commands', @@ -60,5 +64,7 @@ distutils.core.setup(name="authentic2", 'registration (>=0.7)', 'debug_toolbar', 'django_authopenid (>=1.0)', + 'django_profiles (>=0.2)', + 'south' ], )