about summary refs log tree commit diff homepage
diff options
context:
space:
mode:
authorNguyễn Gia Phong <mcsinyx@disroot.org>2020-03-04 09:41:05 +0700
committerNguyễn Gia Phong <mcsinyx@disroot.org>2020-03-04 09:41:05 +0700
commitc326f93bbb7241d7e4d5b0afa1f50a60efb3af67 (patch)
tree68f9ef724ffef1d88eb3fb937bb1424948a79977
parentb90e6c272c1f76da43992323ffd0f148f759f408 (diff)
downloadbrutalmaze-c326f93bbb7241d7e4d5b0afa1f50a60efb3af67.tar.gz
Redirect pygame message and add wiki to sdist
-rw-r--r--brutalmaze/game.py4
-rw-r--r--pyproject.toml3
2 files changed, 5 insertions, 2 deletions
diff --git a/brutalmaze/game.py b/brutalmaze/game.py
index f8c3cdd..e5670f8 100644
--- a/brutalmaze/game.py
+++ b/brutalmaze/game.py
@@ -21,13 +21,15 @@ __version__ = '0.9.0'
 import re
 from argparse import ArgumentParser, FileType, RawTextHelpFormatter
 from configparser import ConfigParser
+from contextlib import redirect_stdout
+from io import StringIO
 from math import atan2, radians, pi
 from os.path import join as pathjoin, pathsep
 from socket import socket, SOL_SOCKET, SO_REUSEADDR
 from sys import stdout
 from threading import Thread
 
-import pygame
+with redirect_stdout(StringIO()): import pygame
 from pygame import KEYDOWN, MOUSEBUTTONUP, QUIT, VIDEORESIZE
 from pygame.time import Clock, get_ticks
 from appdirs import AppDirs
diff --git a/pyproject.toml b/pyproject.toml
index 5be1f72..bed1ac4 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -28,4 +28,5 @@ license = 'AGPLv3+'
 brutalmaze = "brutalmaze.game:main"
 
 [tool.flit.sdist]
-exclude = ['docs', 'wiki']
+include = ['wiki']
+exclude = ['docs']