Remove instruction about installing django-registration as it is included in authentic2

django-registration is badly maintained currently, a fork exists named
django-registration2 but it is incompatible with django-auth-openid as
it changed some url internal names. For now we must consider
django-registration an internally distributed dependency. The copy in
authentic/vendor/registration/ should be updated regurlarly.
This commit is contained in:
Benjamin Dauvergne 2011-12-29 19:29:24 +01:00
parent 070b42addc
commit 7b34bd1e32
4 changed files with 12 additions and 23 deletions

View File

@ -46,11 +46,6 @@ You must install the following packages to use Authentic
From sources: http://www.djangoproject.com/download/1.3/tarball/
* Django-registration 0.8-alpha-1::
From sources: http://bitbucket.org/ubernostrum/django-registration/downloads
Debian based distribution: apt-get install python-django-registration
* Django-authopenid 0.9.6::
From sources: http://bitbucket.org/benoitc/django-authopenid/downloads
@ -65,13 +60,11 @@ You must install the following packages to use Authentic
You install all the django libraries quickly using pip::
pip install django django-profiles django-registration \
django-debug-toolbar django-authopenid south
pip install django django-profiles django-authopenid south
or easy_install::
easy_install django django-profiles django-registration \
django-debug-toolbar django-authopenid south
easy_install django django-profiles django-authopenid south
Quick Start
-----------

View File

@ -1,5 +1,10 @@
#!/usr/bin/env python
import sys
import os
from django.core.management import execute_manager
sys.path.append(os.path.join(os.path.dirname(__file__), 'vendor'))
try:
import settings # Assumed to be in the same directory.
except ImportError:

View File

@ -18,11 +18,6 @@ You must install the following packages to use Authentic
From sources: http://www.djangoproject.com/download/1.3/tarball/
- Django-registration 0.8-alpha-1:
From sources: http://bitbucket.org/ubernostrum/django-registration/downloads
Debian based distribution: apt-get install python-django-registration
- Django-authopenid 0.9.6:
From sources: http://bitbucket.org/benoitc/django-authopenid/downloads
@ -37,13 +32,11 @@ You must install the following packages to use Authentic
You install all the django libraries quickly using pip::
pip install django django-profiles django-registration \
django-debug-toolbar django-authopenid south
pip install django django-profiles django-authopenid south
or easy_install::
easy_install django django-profiles django-registration \
django-debug-toolbar django-authopenid south
easy_install django django-profiles django-authopenid south
Quick Start
-----------

View File

@ -64,10 +64,8 @@ distutils.core.setup(name="authentic2",
data_files=list(ls_r('static', 'share/authentic2/')),
requires=[
'django (>=1.3.0)',
'registration (>=0.7)',
'debug_toolbar',
'django_authopenid (>=1.0)',
'django_profiles (>=0.2)',
'south'
'south',
'django-authopenid (>=1.0)',
'django-profiles (>=0.2)',
],
)