Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Please prompt me how to pass a user-defined parameter both from the command line and setup.cfg configuration file to distutils' setup.py script. I want to write a setup.py script, which accepts my package specific parameters. For example:

python setup.py install -foo myfoo

Thank you,
Mher

share|improve this question

2 Answers

You can't really pass custom parameters to the script. However the following things are possible and could solve your problem:

  • optional features can be enabled using --with-featurename, standard features can be disabled using --without-featurename. [AFAIR this requires setuptools]
  • you can use environment variables, these however require to be set on windows whereas prefixing them works on linux/ OS X (FOO=bar python setup.py).
  • you can extend distutils with your own cmd_classes which can implement new features. They are also chainable, so you can use that to change variables in your script. (python setup.py foo install) will execute the foo command before it executes install.

Hope that helps somehow. Generally speaking I would suggest providing a bit more information what exactly your extra parameter should do, maybe there is a better solution available.

share|improve this answer

I was looking at doing exactly the same thing, and the documentation on how to do this is absolutely terrible, eventually I came across this one: the hitchhikers guide to packaging, which uses sdist and its user_options.

This looks like the proper way of doing it with distutils (at least the only one that I could find that is vaguely documented). I could not find anything on --with and --without switches mentioned in the answer above for example.

The problem with this solution is that it is just way too involved for what I am looking for (which may also be the case for you). What I really want is the equivallent of:

if "--foo" in sys.argv:
    do_foo_stuff()

So, adding dozens of lines and subclassing sdist is just wrong for me.

EDIT: Finally, after a lot of searching, someone found that you can just parse sys.argv and filter out the arguments that you want, see this setup.py change for example. Now, if someone could actually upvote this answer rather than wrongly downvoting it... People might actually find what they are looking for.

share|improve this answer
This solution is not correct, as --foo could be intended for another command: Using “setup.py build_ext --inplace --foo install”, install should not think it got --foo. – Éric Araujo Oct 10 '11 at 15:54
I’m afraid subclassing a command is the only way to add options to a command. However, it is not as hard as commonly thought. – Éric Araujo Oct 10 '11 at 15:55
I have no idea why you downvote me for giving an example of what I would like to be able to do. I never claimed this was a solution, so why say this is not correct? I provided pointers to the only documentation I could find on the subject, saying that it is "not as hard as commonly thought" does not help us in finding a better answer. – totaam Oct 13 '11 at 10:34
1  
Sorry, I misread your message and thought you were proposing to look into sys.argv, but you were indeed asking for an equivalent to that. I tried to revert my downvote but SO is not cooperating, as usual :( – Éric Araujo Oct 18 '11 at 15:06
1  
Extending distutils: docs.python.org/distutils/extending – Éric Araujo Oct 18 '11 at 15:07

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.