d-meiser / cold-atoms

A tool box for cold-atom simulations.
GNU General Public License v3.0
12 stars 5 forks source link

Fix requirements in pypi package #51

Closed d-meiser closed 6 years ago

d-meiser commented 6 years ago

The issue here is that pip install runs setup.py egg_info. But when this runs none of the dependencies have been installed yet. So we need to figure out a way where cython and numpy dependent code only gets called once we configure the package.

numpy has a setup.py that does this.