mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-01-07 11:56:51 +00:00
bf1b8ed73f
taskgraph: Make update tasks support esr60 MozReview-Commit-ID: 7ZUJueBiUwN --HG-- extra : source : 60fc628ce8ba14cd27fe11f1a575f9beaa96e84b extra : intermediate-source : 3a617bd3456bf23438b25a8d0b13c9976858226e
28 lines
907 B
Python
28 lines
907 B
Python
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
from __future__ import absolute_import
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
VERSION = '0.2'
|
|
|
|
setup(
|
|
author='Mozilla Foundation',
|
|
author_email='Mozilla Release Engineering',
|
|
name='mozrelease',
|
|
description='Common functionality used by Mozilla Release Automation',
|
|
license='MPL 2.0',
|
|
packages=find_packages(),
|
|
version=VERSION,
|
|
classifiers=[
|
|
'Development Status :: 3 - Alpha',
|
|
'Topic :: Software Development :: Build Tools',
|
|
'License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)',
|
|
'Programming Language :: Python :: 2.7',
|
|
'Programming Language :: Python :: Implementation :: CPython',
|
|
],
|
|
keywords='mozilla',
|
|
)
|