mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-28 23:31:56 +00:00
21b473eac4
This is needed to release a new mozlog with the PRECONDITION_FAILED test and subtest status for use in web-platform-tests. Update all in-tree dependencies on mozlog to >=5.0. These were found with `hg grep 'mozlog.*[0-9]'`. Only testing/web-platform/tests/tools/wptrunner/requirements.txt remains on 4.2.0, and it will be updated in upstream wpt after mozlog 5.0 has been released. Differential Revision: https://phabricator.services.mozilla.com/D50456 --HG-- extra : moz-landing-system : lando
27 lines
771 B
Python
27 lines
771 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 setuptools import setup
|
|
|
|
VERSION = 0.1
|
|
DEPS = ['mozlog >= 5.0']
|
|
|
|
setup(
|
|
name='mozlint',
|
|
description='Framework for registering and running micro lints',
|
|
license='MPL 2.0',
|
|
author='Andrew Halberstadt',
|
|
author_email='ahalberstadt@mozilla.com',
|
|
url='',
|
|
packages=['mozlint'],
|
|
version=VERSION,
|
|
classifiers=[
|
|
'Environment :: Console',
|
|
'Development Status :: 3 - Alpha',
|
|
'License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)',
|
|
'Natural Language :: English',
|
|
],
|
|
install_requires=DEPS,
|
|
)
|