Mercurial > hg > zebra
comparison setup.py @ 27:7c132e01c281 0.0.5
Add -oraw to lpr command
author | Ben Croston <ben@croston.org> |
---|---|
date | Mon, 27 Apr 2015 11:38:07 +0100 |
parents | 20f6df6d3f42 |
children | 63d1260cc64e |
comparison
equal
deleted
inserted
replaced
26:20f6df6d3f42 | 27:7c132e01c281 |
---|---|
5 try: | 5 try: |
6 from distutils.command.build_py import build_py_2to3 as build_py | 6 from distutils.command.build_py import build_py_2to3 as build_py |
7 except ImportError: | 7 except ImportError: |
8 from distutils.command.build_py import build_py | 8 from distutils.command.build_py import build_py |
9 | 9 |
10 classifiers = ['Development Status :: 3 - Alpha', | 10 classifiers = ['Development Status :: 5 - Production/Stable', |
11 'Operating System :: Microsoft :: Windows', | 11 'Operating System :: Microsoft :: Windows', |
12 'Operating System :: Unix', | 12 'Operating System :: Unix', |
13 "Operating System :: MacOS :: MacOS X", | 13 "Operating System :: MacOS :: MacOS X", |
14 'License :: OSI Approved :: MIT License', | 14 'License :: OSI Approved :: MIT License', |
15 'Intended Audience :: Developers', | 15 'Intended Audience :: Developers', |
23 install_requires = 'win32print' | 23 install_requires = 'win32print' |
24 else: | 24 else: |
25 install_requires = None | 25 install_requires = None |
26 | 26 |
27 setup(name = 'zebra', | 27 setup(name = 'zebra', |
28 version = '0.0.4a', | 28 version = '0.0.5', |
29 py_modules = ['zebra'], | 29 py_modules = ['zebra'], |
30 author = 'Ben Croston', | 30 author = 'Ben Croston', |
31 author_email = 'ben@croston.org', | 31 author_email = 'ben@croston.org', |
32 maintainer = 'Ben Croston', | 32 maintainer = 'Ben Croston', |
33 maintainer_email = 'ben@croston.org', | 33 maintainer_email = 'ben@croston.org', |
38 classifiers = classifiers, | 38 classifiers = classifiers, |
39 license = 'MIT', | 39 license = 'MIT', |
40 cmdclass = {'build_py': build_py}, | 40 cmdclass = {'build_py': build_py}, |
41 install_requires = install_requires | 41 install_requires = install_requires |
42 ) | 42 ) |
43 |