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 __future__
import absolute_import
7 from setuptools
import setup
9 PACKAGE_NAME
= "mozperftest"
10 PACKAGE_VERSION
= "0.2"
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
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",
33 packages
=["mozperftest"],
34 include_package_data
=True,
36 install_requires
=deps
,