Skip to content

Commit

Permalink
Fix setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
omab committed Jan 18, 2011
1 parent 797a958 commit cf1ab20
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion setup.py
Expand Up @@ -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',
Expand Down
2 changes: 1 addition & 1 deletion social_auth/__init__.py
Expand Up @@ -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))

0 comments on commit cf1ab20

Please sign in to comment.