How to make python module installer for windows?
I have python (2.7 if that makes difference) module which wrapped functionality around C-lib and would like to make an installer with build lib to make installation easy.
asked Nov 17, 2010 at 19:53
Jox
7,18214 gold badges53 silver badges63 bronze badges
1 Answer 1
Using distutils, you can write a setup file that would compile your libs and install them
- http://docs.python.org/library/distutils.html
- http://docs.python.org/distutils/index.html#distutils-index
See this example setup.py which also compiles "c" lib for different platforms.
answered Nov 17, 2010 at 19:56
pyfunc
67.1k15 gold badges155 silver badges139 bronze badges
Sign up to request clarification or add additional context in comments.
Comments
lang-py