You have to explicit import the constants you want to use.
It's preferable to have all your constants in a "config" file (i.e. config.py) ) and then if you want them in the package namespace, import them.
init.py file:
from package.config import *
it's more clear that way