Bug 1700051: part 36) Reduce accessibility of `SoftText::mBegin` to `private`. r...
[gecko.git] / python / mozbuild / setup.py
blob7aa4721d2e059eedc2f7175417e97c539c5186d1
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 __future__ import absolute_import
7 from setuptools import setup, find_packages
9 VERSION = "0.2"
11 setup(
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",
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",
30 keywords="mozilla build",