Bug 1888590 - Mark some subtests on trusted-types-event-handlers.html as failing...
[gecko.git] / python / mozbuild / setup.py
blob30785493b0511b07e2c67d048b07f741f759e764
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
3 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
5 from setuptools import find_packages, setup
7 VERSION = "0.2"
9 setup(
10 author="Mozilla Foundation",
11 author_email="dev-builds@lists.mozilla.org",
12 name="mozbuild",
13 description="Mozilla build system functionality.",
14 license="MPL 2.0",
15 packages=find_packages(),
16 version=VERSION,
17 install_requires=[
18 "jsmin",
19 "mozfile",
21 classifiers=[
22 "Development Status :: 3 - Alpha",
23 "Topic :: Software Development :: Build Tools",
24 "License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
25 "Programming Language :: Python :: 2.7",
26 "Programming Language :: Python :: Implementation :: CPython",
28 keywords="mozilla build",