Skip to content
This repository has been archived by the owner on Nov 30, 2020. It is now read-only.

Commit

Permalink
Fix broken argument parser on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
McSinyx committed Apr 4, 2018
1 parent e63a1d8 commit 92a41b3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion brutalmaze/game.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# You should have received a copy of the GNU Affero General Public License
# along with Brutal Maze. If not, see <https://www.gnu.org/licenses/>.

__version__ = '0.6.4'
__version__ = '0.6.5'

import re
from argparse import ArgumentParser, FileType, RawTextHelpFormatter
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

setup(
name='brutalmaze',
version='0.6.4',
version='0.6.5',
description='A minimalist hack and slash game with fast-paced action',
long_description=long_description,
url='https://github.com/McSinyx/brutalmaze',
Expand All @@ -29,4 +29,4 @@
packages=['brutalmaze'],
install_requires=['appdirs', 'pygame>=1.9'],
package_data={'brutalmaze': ['icon.png', 'soundfx/*.ogg', 'settings.ini']},
entry_points={'gui_scripts': ['brutalmaze = brutalmaze.game:main']})
entry_points={'console_scripts': ['brutalmaze = brutalmaze.game:main']})
2 changes: 1 addition & 1 deletion wiki
Submodule wiki updated from 95460d to 8f40eb

0 comments on commit 92a41b3

Please sign in to comment.