summaryrefslogtreecommitdiffstats
path: root/ptpython/__main__.py
blob: 3a2f7ddffa45edbc669f1ce6223814de12f3075a (plain)
1
2
3
4
5
6
7
8
9
"""
Make `python -m ptpython` an alias for running `./ptpython`.
"""

from __future__ import annotations

from .entry_points.run_ptpython import run

run()