Bug 1708193 - Remove mozapps/extensions/internal/Content.js r=rpl
[gecko.git] / python / mozrelease / setup.py
blobde6eccb22ec40a3593069220fa09c79c79b11bfe
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="Mozilla Release Engineering",
14 name="mozrelease",
15 description="Common functionality used by Mozilla Release Automation",
16 license="MPL 2.0",
17 packages=find_packages(),
18 version=VERSION,
19 classifiers=[
20 "Development Status :: 3 - Alpha",
21 "Topic :: Software Development :: Build Tools",
22 "License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
23 "Programming Language :: Python :: 2.7",
24 "Programming Language :: Python :: Implementation :: CPython",
26 keywords="mozilla",