Bug 1877642 - Disable browser_fullscreen-tab-close-race.js on apple_silicon !debug...
[gecko.git] / testing / mozbase / mozproxy / setup.py
blob25fefaa51b4a5ec9360072f293d5a99f3d69ba82
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 = "mozproxy"
8 PACKAGE_VERSION = "1.0"
10 # dependencies
11 deps = ["redo", "mozinfo", "mozlog >= 6.0"]
13 setup(
14 name=PACKAGE_NAME,
15 version=PACKAGE_VERSION,
16 description="Proxy for playback",
17 long_description="see https://firefox-source-docs.mozilla.org/mozbase/index.html",
18 classifiers=[
19 "Programming Language :: Python :: 2.7",
20 "Programming Language :: Python :: 3.5",
22 # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
23 keywords="mozilla",
24 author="Mozilla Automation and Tools team",
25 author_email="tools@lists.mozilla.org",
26 url="https://wiki.mozilla.org/Auto-tools/Projects/Mozbase",
27 license="MPL",
28 packages=["mozproxy"],
29 install_requires=deps,
30 entry_points={
31 "console_scripts": [
32 "mozproxy=mozproxy.driver:main",
35 include_package_data=True,
36 zip_safe=False,