I've uploaded a python module to pypi and locally installed the module with:
pip install microarray_quantilenorm
I'm trying to run the module on commandline with pass-through arguments.
When I call the python script directly from site-packages, everything works fine.
python /site-packages/microarray_quantilenorm/microarray_quantilenorm.py *csv
But calling:
python -m microarray_quantilenorm.__main__ *csv
OR:
python -m microarray_quantilenorm *csv
Results in:
/anaconda/bin/python: No module named microarray_quantilenorm.__main__
I cannot track down to whether there is an issue in setup.py, my __init__.py or elsewhere. Thanks.