mirror of
https://github.com/lllin000/PaperForge.git
synced 2026-07-22 17:00:23 +00:00
11 lines
294 B
Python
11 lines
294 B
Python
"""paperforge.__main__ — entry point for `python -m paperforge`."""
|
|
|
|
import sys
|
|
|
|
from paperforge.cli import main
|
|
|
|
if __name__ == "__main__":
|
|
if sys.platform == "win32":
|
|
sys.stdout.reconfigure(encoding="utf-8")
|
|
sys.stderr.reconfigure(encoding="utf-8")
|
|
sys.exit(main())
|