I’ve created a C extension that I’d like to enable in my Python package (using setuptools) only if a command line option is passed in. What is the easiest way to do this?
I can’t seem to find any straightforward ways of going about this.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
This is hacky, but might be easiest. A more advanced approach would be to extend the Distribution class to support a flag, say
--with-modulesand then customize ext_modules inside finalize_options.