At the moment, we're relying on a Visual Studio solution when
building the extension. For this reason, simply doing a "pip install
PyMI" will fail as setup.py doesn't build the extension, expecting
it to be already built.
We're now letting distutils build our extension (keeping the VS
Solution as well for now). We're also switching to pbr, simplifying
version management.
The project structure will have to change a bit. Pbr seems to make
some assumptions about the project layout, so we'll have to move
setup.py in the top level dir, having wmi dir next to it.
At the moment, we're relying on a Visual Studio solution when building the extension. For this reason, simply doing a "pip install PyMI" will fail as setup.py doesn't build the extension, expecting it to be already built.
We're now letting distutils build our extension (keeping the VS Solution as well for now). We're also switching to pbr, simplifying version management.
The project structure will have to change a bit. Pbr seems to make some assumptions about the project layout, so we'll have to move setup.py in the top level dir, having wmi dir next to it.
Fixes: #40