diff --git a/pex/__main__.py b/pex/__main__.py new file mode 100644 index 000000000..97395875e --- /dev/null +++ b/pex/__main__.py @@ -0,0 +1,8 @@ +# Copyright 2019 Pants project contributors (see CONTRIBUTORS.md). +# Licensed under the Apache License, Version 2.0 (see LICENSE). + +from __future__ import absolute_import + +from pex.bin import pex + +__name__ == '__main__' and pex.main()