jcmgray / xyzpy

Efficiently generate and analyse high dimensional data.
http://xyzpy.readthedocs.io
MIT License
67 stars 11 forks source link

Need numba in install_requires #1

Closed rparini closed 6 years ago

rparini commented 6 years ago

Installing xyzpy with

pip install xyzpy

does not install the required numba package since it is not included in the install_requires argument in setup.py.

ps. Thank you for working on this project, it looks very useful!

jcmgray commented 6 years ago

Thanks for the heads up! Since numba is quite a heavy dependency and only needed for the processing functions - I've just made it optional. xyzpy should now only raise ImportError if any functions requiring it are called.

Glad it looks useful!