Moves code out of __init__.py. The code that was there was breaking a fresh phenopy install because it trying to import libraries in setup() in setup.py.
@vgainullin txt2hpo will need to change the import statements for phenopy.
from phenopy import generate_annotated_network becomes from phenopy.build_hpo import generate_annotated_network.
Moves code out of
__init__.py
. The code that was there was breaking a fresh phenopy install because it trying to import libraries insetup()
insetup.py
.