inspirehep / beard

Bibliographic Entity Automatic Recognition and Disambiguation
Other
66 stars 36 forks source link

setup: include all packages #40

Closed jalavik closed 9 years ago

jalavik commented 9 years ago

This PR fixes the installation of beard under site-packages.utils

Before

cd src/beard
pip install .
cd
ipython
In [1]: from beard import utils
---------------------------------------------------------------------------
ImportError                               Traceback (most recent call last)
<ipython-input-1-7970c0420530> in <module>()
----> 1 from beard import utils

ImportError: cannot import name utils

After

cd src/beard
pip install .
cd
ipython
In [1]: from beard import utils

In [2]: 
glouppe commented 9 years ago

Thanks for the fix! It has been merged as part of #41