Bug 1858921 - Part 2: Move WasmStructObject inlinable allocation methods to new inlin...
[gecko.git] / config / mozunit / setup.py
blobc2771b9053b90d2d2c66ac0c35c37f175a9331b8
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/.
5 from setuptools import setup
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,