I am building a python module and I am somehow stuck. I would like to make some features optional, i.e. so that they are simply not there if disabled (even not the methods).
My module consists of C and Python parts; and I search something similar to #ifdefs for the Python, because if one feature in C is disabled then the Python related stuff should NOT be installed.
Any suggestions?
There's no such thing, at least, not as it works in C.
Instead, I'd recommend you to something like this:
If a part is made optional as it requires more 3rd party libraries to be installed, define some
extras
in setup.py See hereIf you want to support "pluggable" features (eg. some kind of plugin, ...) use setuptools' entry points and split features across multiple packages. Then, install only the packages you need.