diff options
author | Nguyễn Gia Phong <vn.mcsinyx@gmail.com> | 2018-04-04 23:35:43 +0700 |
---|---|---|
committer | Nguyễn Gia Phong <vn.mcsinyx@gmail.com> | 2018-04-04 23:35:43 +0700 |
commit | 92a41b3cff725da25c510b1684d9a72acd8cc0c8 (patch) | |
tree | 4d07c6ccc89dacc184ad6a501861c04289a85723 /setup.py | |
parent | e63a1d8dc812d799ebea6960387263f321187292 (diff) | |
download | brutalmaze-92a41b3cff725da25c510b1684d9a72acd8cc0c8.tar.gz |
Fix broken argument parser on Windows 0.6.5
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/setup.py b/setup.py index adceb9f..b2b83be 100755 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ with open('README.rst') as f: 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', @@ -29,4 +29,4 @@ setup( 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']}) |