setup.py (1028B)
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/. 4 5 from setuptools import setup 6 7 PACKAGE_NAME = "mozperftest" 8 PACKAGE_VERSION = "0.2" 9 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", 20 ] 21 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, 37 )