This file is indexed.

/usr/share/doc/python3-social-auth/installing.txt is in python3-social-auth 0.2.13-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
Installation
************


Dependencies
============

Dependencies that **must** be met to use the application:

* OpenId support depends on python-openid

* OAuth support depends on requests-oauthlib

* Several backends demands application registration on their
  corresponding sites and other dependencies like sqlalchemy on Flask
  and Webpy.


Get a copy
==========

From pypi:

   $ pip install python-social-auth

Or:

   $ easy_install python-social-auth

Or clone from github:

   $ git clone git://github.com/omab/python-social-auth.git

And add social to "PYTHONPATH":

   $ export PYTHONPATH=$PYTHONPATH:$(pwd)/python-social-auth/

Or:

   $ cd python-social-auth
   $ sudo python setup.py install


Upgrading
=========


Django with South
-----------------

Upgrading from 0.1 to 0.2 is likely to cause problems trying to apply
a migration when the tables already exist. In this case a fake
migration needs to be applied:

$ python manage.py migrate --fake default