Bug 1641886 [wpt PR 23851] - Support interpolating contain-intrinsic-size, a=testonly
[gecko.git] / testing / mozbase / mozproxy / setup.py
blob10ae36a7c752d57548c5f2804331f4a992bcd327
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 = "mozproxy"
10 PACKAGE_VERSION = "1.0"
12 # dependencies
13 deps = ["redo"]
15 setup(
16 name=PACKAGE_NAME,
17 version=PACKAGE_VERSION,
18 description="Proxy for playback",
19 long_description="see https://firefox-source-docs.mozilla.org/mozbase/index.html",
20 classifiers=[
21 "Programming Language :: Python :: 2.7",
22 "Programming Language :: Python :: 3.5",
24 # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
25 keywords="mozilla",
26 author="Mozilla Automation and Tools team",
27 author_email="tools@lists.mozilla.org",
28 url="https://wiki.mozilla.org/Auto-tools/Projects/Mozbase",
29 license="MPL",
30 packages=["mozproxy"],
31 include_package_data=True,
32 zip_safe=False,
33 install_requires=deps,