Skip to content

Commit bee7acd

Browse files
committed
-
1 parent cd41595 commit bee7acd

File tree

2 files changed

+5
-9
lines changed

2 files changed

+5
-9
lines changed

python_toolbox/bootstrap/bootstrap.py

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,7 @@
1212
### Confirming correct Python version: ########################################
1313
# #
1414
if 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")
2216
if sys.version_info[1] <= 4:
2317
raise Exception(
2418
"You're using Python <=2.4, but this package requires Python 2.5 and "

setup.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,14 +80,16 @@ def get_packages():
8080

8181
my_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

0 commit comments

Comments
 (0)