Skip to content

Commit 30d34c9

Browse files
committed
allow python -m wppm
1 parent e32c249 commit 30d34c9

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

wppm/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,6 @@
2828
OTHER DEALINGS IN THE SOFTWARE.
2929
"""
3030

31-
__version__ = '17.0.20250628'
31+
__version__ = '17.1.20250705'
3232
__license__ = __doc__
3333
__project_url__ = 'http://winpython.github.io/'

wppm/__main__.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
import os
2+
import sys
3+
if __name__ == "__main__":
4+
from wppm import wppm
5+
6+
sys.exit(wppm.main())

0 commit comments

Comments
 (0)