diff --git a/setup.py b/setup.py index bd558ed48..b1c22812b 100644 --- a/setup.py +++ b/setup.py @@ -32,7 +32,9 @@ def long_description(): license='GPL', keywords='django, openid, oath, social auth, application', url='https://github.com/omab/django-social-auth', - packages=['social_auth'], + packages=['social_auth', + 'social_auth.backends', + 'social_auth.backends.contrib'], long_description=long_description(), install_requires=['django>=1.2', 'oauth>=1.0', diff --git a/social_auth/__init__.py b/social_auth/__init__.py index 13d2ab156..c11f5bcad 100644 --- a/social_auth/__init__.py +++ b/social_auth/__init__.py @@ -2,5 +2,5 @@ Django-social-auth application, allows OpenId or OAuth user registration/authentication just adding a few configurations. """ -version = (0, 2, 0) +version = (0, 2, 1) __version__ = '.'.join(map(str, version))