Release 0.3.1 with python versions declared.

This commit is contained in:
Quantum 2018-08-22 14:53:46 -04:00
parent 3ef945063a
commit 93ada2e302

View file

@ -7,7 +7,7 @@ with open(os.path.join(os.path.dirname(__file__), 'README.md')) as f:
setup( setup(
name='2048', name='2048',
version='0.3', version='0.3.1',
packages=['_2048'], packages=['_2048'],
package_data={ package_data={
'_2048': ['*.ttf'], '_2048': ['*.ttf'],
@ -41,6 +41,12 @@ setup(
'Operating System :: Microsoft :: Windows', 'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux', 'Operating System :: POSIX :: Linux',
'Programming Language :: Python', 'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Games/Entertainment', 'Topic :: Games/Entertainment',
], ],
) )