The original PySQLite 2.6.0 egg contains a file setup.cfgthat looks like this:
[build_ext]
libraries=sqlite3
define=SQLITE_OMIT_LOAD_EXTENSION
I would like to build an egg with SQLITE_OMIT_LOAD_EXTENSIONdefine disabled (not installed). I could do this by uncommenting this line in the setup.cfg file, but I would like to do it in the environment zc.buildoutusing zc.recipe.egg, zc.recipe.cmmior any other recipe that could help me.
So, is there an easy way to install PySQLite with extensions turned on, but without intervention setup.cfg?
source
share