summaryrefslogtreecommitdiffstats
path: root/askbot/deps/__init__.py
blob: 497f8c9b823c3e548b9cbe68f8a650479e6cbcb2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
"""
.. _askbot.deps

:mod:askbot.deps - dependency packages for Askbot
===================================================

Most askbot dependencies are satisfied with setuptools, but some modules
were either too seriously modified - like `django_authopenid` specifically for 
askbot, while others are not available via PyPI. Yet some other packages 
while being listed on PyPI, still do not install reliably - those were also
added to the ``askbot.deps`` module.

Some packages included here were modified with hardcoded imports like::

    from askbot.deps.somepackage import xyz
    from askbot.deps import somepackage

So these cannot be moved around at all.
"""