Bug 1843532 - Refactor Statistics::computeMMU to make it easier to understand r=sfink
[gecko.git] / python / mozrelease / setup.py
blobd831cb14c5c6f83322528950ffa43e8098bcf4bf
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="Mozilla Release Engineering",
12 name="mozrelease",
13 description="Common functionality used by Mozilla Release Automation",
14 license="MPL 2.0",
15 packages=find_packages(),
16 version=VERSION,
17 classifiers=[
18 "Development Status :: 3 - Alpha",
19 "Topic :: Software Development :: Build Tools",
20 "License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
21 "Programming Language :: Python :: 2.7",
22 "Programming Language :: Python :: Implementation :: CPython",
24 keywords="mozilla",