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.