I did git clone https://github.com/bow/crimson.git
and I got the below error in PyCharm:
/Users/lorencm/.virtualenvs/crimson/bin/python /Users/lorencm/projects/crimson/crimson/cli.py
Traceback (most recent call last):
File "/Users/lorencm/projects/crimson/crimson/cli.py", line 14, in <module>
from . import __version__
ValueError: Attempted relative import in non-package
I also tried to run it with python -m crimson.cli -h
, but I did not get any output or error. This is the project structure:
pwd
/Users/lorencm/projects/crimson
(crimson)SEF-EEB-123137:crimson lorencm$ tree
.
├── HISTORY.rst
├── LICENSE
├── MANIFEST.in
├── Makefile
├── README.rst
├── crimson
│ ├── __init__.py
│ ├── __init__.pyc
│ ├── cli.py
│ ├── fastqc.py
│ ├── fastqc.pyc
What did I miss?
Mic