setup.py (630B)
1 # This Source Code Form is subject to the terms of the Mozilla Public 2 # License, v. 2.0. If a copy of the MPL was not distributed with this file, 3 # You can obtain one at http://mozilla.org/MPL/2.0/. 4 5 from setuptools import setup 6 7 setup( 8 name="mozunit", 9 version="1.0", 10 description="Make unit tests report the way Mozilla infrastructure expects", 11 classifiers=["Programming Language :: Python :: 2.7"], 12 keywords="mozilla", 13 author="Mozilla Automation and Tools team", 14 author_email="tools@lists.mozilla.org", 15 license="MPL", 16 packages=["mozunit"], 17 include_package_data=True, 18 zip_safe=False, 19 )