From: Matías Aguirre Date: Tue, 18 Jan 2011 17:40:43 +0000 (-0200) Subject: Fix setup.py X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=cf1ab20b7823ac7fb4495c458ce0e64a3d3a13cf;p=django-social-auth.git Fix setup.py --- diff --git a/setup.py b/setup.py index bd558ed..b1c2281 100644 --- a/setup.py +++ b/setup.py @@ -32,7 +32,9 @@ setup(name='django-social-auth', 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 13d2ab1..c11f5bc 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))