Skip to content

Commit f6a7d14

Browse files
committed
Fixes to setup.py
- Bumped the version to 0.2.2 since that's what I'm submitting now. - Changed the author name to "The PySlither Devs" - Added Python 2, 2.6, and 2.7 as supported (since it appears to work there) - Fixed a small problem in the long description
1 parent 9174e75 commit f6a7d14

1 file changed

Lines changed: 6 additions & 3 deletions

File tree

setup.py

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,16 @@
2121
# Versions should comply with PEP440. For a discussion on single-sourcing
2222
# the version across setup.py and the project code, see
2323
# https://packaging.python.org/en/latest/single_source_version.html
24-
version='0.2.1',
24+
version='0.2.2',
2525

2626
description='A Python module that uses PyGame to bring Scratch-like features to Python',
27-
long_description='A Python module that uses PyGame to bring Scratch-like features to Python\nPyGame IS required for this module to work.',
27+
long_description='A Python module that uses PyGame to bring Scratch-like features to Python. PyGame IS required for this module to work.',
2828

2929
# The project's main homepage.
3030
url='https://github.com/PySlither/Slither',
3131

3232
# Author details
33-
author='Tymewalk',
33+
author='The PySlither Devs',
3434
author_email='none',
3535

3636
# Choose your license
@@ -53,6 +53,9 @@
5353

5454
# Specify the Python versions you support here. In particular, ensure
5555
# that you indicate whether you support Python 2, Python 3 or both.
56+
'Programming Language :: Python :: 2',
57+
'Programming Language :: Python :: 2.6',
58+
'Programming Language :: Python :: 2.7',
5659
'Programming Language :: Python :: 3',
5760
'Programming Language :: Python :: 3.2',
5861
'Programming Language :: Python :: 3.3',

0 commit comments

Comments
 (0)