]> git.parisson.com Git - django-social-auth.git/commitdiff
Updated setup.py and README with installation instructions
authorMatías Aguirre <matiasaguirre@gmail.com>
Wed, 5 Jan 2011 03:00:37 +0000 (01:00 -0200)
committerMatías Aguirre <matiasaguirre@gmail.com>
Wed, 5 Jan 2011 03:00:37 +0000 (01:00 -0200)
README.rst
setup.py

index 80c08e0baa0c637a5b2e276c0ce1f15ee5302118..312fa849f5b9af7e9e4d4d9568d0125697f727cf 100644 (file)
@@ -46,10 +46,31 @@ Dependencies that must be meet to use the app:
 - Twitter and Facebook support demands an application registration
   on their corresponding sites.
 
-
 ------------
 Installation
 ------------
+
+From pypi_::
+
+    $ pip install django-social-auth
+
+or clone from github_::
+
+    $ git clone git://github.com/omab/django-social-auth.git
+
+and add social_auth to PYTHONPATH::
+
+    $ export PYTHONPATH=$PYTHONPATH:$(pwd)/django-social-auth/
+
+or::
+
+    $ cd django-social-auth
+    $ sudo python setup.py install
+
+
+-------------
+Configuration
+-------------
 - Add social_auth to PYTHONPATH and installed applications::
 
     INSTALLED_APPS = (
@@ -289,3 +310,5 @@ Base work is copyrighted by:
 .. _Facebook OAuth: http://developers.facebook.com/docs/authentication/
 .. _Orkut OAuth:  http://code.google.com/apis/orkut/docs/rest/developers_guide_protocol.html#Authenticating
 .. _myOpenID: https://www.myopenid.com/
+.. _pypi: http://pypi.python.org/pypi/django-social-auth/
+.. _github: https://github.com/omab/django-social-auth
index 42541329e6e127239604377840ba9af61de0ddea..ce37f9a55ac9021bce73b42b152d0fa6ed2d1ba2 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -12,6 +12,7 @@ setup(name='django-social-auth',
       license='GPL',
       keywords='django, openid, oath, social auth, application',
       url='https://github.com/omab/django-social-auth',
+      download_url='git+git://github.com/omab/django-social-auth.git#egg=django-social-auth',
       packages=['social_auth'],
       long_description=open(join(dirname(__file__), 'README.rst')).read(),
       requires=['django (>=1.2)',