diff options
author | Nguyễn Gia Phong <vn.mcsinyx@gmail.com> | 2020-01-21 15:18:19 +0700 |
---|---|---|
committer | Nguyễn Gia Phong <vn.mcsinyx@gmail.com> | 2020-01-21 15:18:19 +0700 |
commit | 5e5778d814c3d76cf74aa4e660d5fbaeeeb50c82 (patch) | |
tree | eb837ef7d4faf9c8037d626e4c4b2bb704a68814 /setup.py | |
parent | e2149b18c27f536ea823ffe1a925ac483cafe3ec (diff) | |
download | brutalmaze-5e5778d814c3d76cf74aa4e660d5fbaeeeb50c82.tar.gz |
Drop Python 2 support (resolve #13)
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/setup.py b/setup.py index a8a5ae8..4b350f9 100755 --- a/setup.py +++ b/setup.py @@ -1,5 +1,4 @@ -#!/usr/bin/env python -# -*- coding: utf-8 -*- +#!/usr/bin/env python3 from setuptools import setup with open('README.rst') as f: @@ -7,7 +6,7 @@ with open('README.rst') as f: setup( name='brutalmaze', - version='0.8.28', + version='0.9.0', description="Minimalist thrilling shoot 'em up game", long_description=long_description, url='https://github.com/McSinyx/brutalmaze', |