File tree Expand file tree Collapse file tree 2 files changed +5
-9
lines changed
Expand file tree Collapse file tree 2 files changed +5
-9
lines changed Original file line number Diff line number Diff line change 1212### Confirming correct Python version: ########################################
1313# #
1414if sys .version_info [0 ] >= 3 :
15- raise Exception (
16- "You're using Python 3.x, but this version of the Python Toolbox is "
17- "not compatible with Python 3.x. The `python_toolbox` intaller "
18- "should know to install a version compatible with Python 3.x when "
19- "launched with Python 3.x. I'm not sure what went wrong in your "
20- "system."
21- )
15+ raise Exception ("Python 3.x is not supported" )
2216if sys .version_info [1 ] <= 4 :
2317 raise Exception (
2418 "You're using Python <=2.4, but this package requires Python 2.5 and "
Original file line number Diff line number Diff line change @@ -80,14 +80,16 @@ def get_packages():
8080
8181my_classifiers = [
8282 'Development Status :: 4 - Beta' ,
83- 'Intended Audience :: Science/Research' ,
83+ 'Intended Audience :: Developers' ,
8484 ('License :: OSI Approved :: GNU Library or Lesser General '
8585 'Public License (LGPL)' ),
86+ 'Operating System :: OS Independent'
8687 'Programming Language :: Python' ,
8788 'Programming Language :: Python :: 2.5' ,
8889 'Programming Language :: Python :: 2.6' ,
8990 'Programming Language :: Python :: 2.7' ,
90- 'Topic :: Scientific/Engineering' ,
91+ 'Topic :: Software Development :: Libraries :: Python Modules' ,
92+ 'Topic :: Utilities'
9193]
9294
9395
You can’t perform that action at this time.
0 commit comments