From cf1ab20b7823ac7fb4495c458ce0e64a3d3a13cf Mon Sep 17 00:00:00 2001 From: =?utf8?q?Mat=C3=ADas=20Aguirre?= Date: Tue, 18 Jan 2011 15:40:43 -0200 Subject: [PATCH] Fix setup.py --- setup.py | 4 +++- social_auth/__init__.py | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) 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)) -- 2.39.5