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/.
4
5from __future__ import absolute_import
6
7from setuptools import setup, find_packages
8
9VERSION = "0.2"
10
11setup(
12    author="Mozilla Foundation",
13    author_email="dev-builds@lists.mozilla.org",
14    name="mozbuild",
15    description="Mozilla build system functionality.",
16    license="MPL 2.0",
17    packages=find_packages(),
18    version=VERSION,
19    install_requires=[
20        "jsmin",
21        "mozfile",
22    ],
23    classifiers=[
24        "Development Status :: 3 - Alpha",
25        "Topic :: Software Development :: Build Tools",
26        "License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
27        "Programming Language :: Python :: 2.7",
28        "Programming Language :: Python :: Implementation :: CPython",
29    ],
30    keywords="mozilla build",
31)
32