21 lines
548 B
Python
21 lines
548 B
Python
"""
|
|
This is here temporarily, for backwards compatability purposes
|
|
It should be removed in the future, and you should replace any imports
|
|
like:
|
|
from my.reddit import ...
|
|
to:
|
|
from my.reddit.all import ...
|
|
since that allows for easier overriding using namespace packages
|
|
https://github.com/karlicoss/HPI/issues/102
|
|
"""
|
|
|
|
# For now, including this here, since importing the module
|
|
# causes .rexport to be imported, which requires rexport
|
|
REQUIRES = [
|
|
'git+https://github.com/karlicoss/rexport',
|
|
]
|
|
|
|
|
|
# TODO: add warning here
|
|
|
|
from .rexport import *
|