no bug - Bumping Firefox l10n changesets r=release a=l10n-bump DONTBUILD CLOSED TREE
[gecko.git] / python / mozperftest / setup.py
blob75ebab930550e4050e8260a0a0506d2b1535cc23
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 file,
3 # You can obtain one at http://mozilla.org/MPL/2.0/.
5 from setuptools import setup
7 PACKAGE_NAME = "mozperftest"
8 PACKAGE_VERSION = "0.2"
10 deps = [
11 "regex",
12 "jsonschema",
13 "attr",
14 "mozlog >= 6.0",
15 "mozdevice >= 4.0.0",
16 "mozproxy",
17 "mozinfo",
18 "mozfile",
19 "mozperftest-tools",
22 setup(
23 name=PACKAGE_NAME,
24 version=PACKAGE_VERSION,
25 description="Mozilla's mach perftest command",
26 classifiers=["Programming Language :: Python :: 3.6"],
27 # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
28 keywords="",
29 author="Mozilla Performance Test Engineering Team",
30 author_email="tools@lists.mozilla.org",
31 url="https://hg.mozilla.org/mozilla-central/file/tip/python/mozperftest",
32 license="MPL",
33 packages=["mozperftest"],
34 include_package_data=True,
35 zip_safe=False,
36 install_requires=deps,