I have python project called xyz. It has a directory structure like this:<p><pre><code> xyz/
__init__.py
a.py
b.py
c.py
</code></pre>
At the top of a.py, I'd like to be able to say something like from c import some_func.<p>From what I can tell, there are many, many different ways to accomplish this.<p>I haven't been able to find anything though that is both a) automated and b) clean.<p>How do you handle this your python projects?