Simplify building Python extensions with CMake. PyCMake is fundamentally just glue between distutils and CMake. It wraps distutils.setup so that a CMake build step occurs before calling distutils.setup, and automatically appends CMake-built output into the distutils package_data as appropriate.
- Free software: MIT license
- Documentation: http://PyCMake.readthedocs.org.
- (TODO) Wraps distutils so that CMake build step occurs automatically before distutils setup
- (TODO) Passes command line options through to both CMake and distutils (tries to be smart)
- (TODO) Creates simple CMakeLists.txt files for source files that you specify, allowing you to leverage CMake's cross-platform build scripting with less effort.