Mercurial > hg > zebra
diff setup.py @ 1:21c3229ed401
Tidy up
author | Ben Croston <ben@fuzzyduckbrewery.co.uk> |
---|---|
date | Fri, 12 Aug 2011 21:48:00 +0100 |
parents | 5bd9ee5c0cae |
children | 639d9699e53c |
line wrap: on
line diff
--- a/setup.py Fri Aug 12 21:40:12 2011 +0100 +++ b/setup.py Fri Aug 12 21:48:00 2011 +0100 @@ -7,8 +7,6 @@ except ImportError: from distutils.command.build_py import build_py -PLATFORM_IS_WINDOWS = sys.platform.lower().startswith('win') - classifiers = ['Development Status :: 3 - Alpha', 'Operating System :: Microsoft :: Windows', 'Operating System :: Unix', @@ -19,7 +17,7 @@ long_description = open('README').read() -if PLATFORM_IS_WINDOWS: +if sys.platform.lower().startswith('win'): requires = ['win32print'] else: requires = []