Hi,<div>I am developing a Package under PyDy,  for GSoC.</div><div>This is my directory structure.</div><div><br></div><div>pydy/</div><div>--------- __init__.py</div><div>---------pydy_viz/</div><div>                    -----------------__init__.py</div>
<div>                    --------------shapes.py</div><div>                    --------------tests\</div><div>                                    -----------__init__.py</div><div>                                    -----------test_shapes.py</div>
<div><br></div><div>Now I am trying to import pydy_viz.shapes from inside tests, i.e from test_shapes.py</div><div><br></div><div>I have tried both approaches.</div><div>from pydy_viz.shapes import *</div><div>Error: No module named pydy_viz.shapes</div>
<div>and relatively ..</div><div><br></div><div>from ..shapes import *</div><div>Error: tried relative imports from non-package.</div><div><br></div><div>but I am not able to import it.</div><div>Any ideas what I might be doing wrong.</div>
<div>I dont have a setup.py file in place for now.</div><div><br></div><div>Thanks</div><div><br></div><div><br></div>