Bug 1700051: part 36) Reduce accessibility of `SoftText::mBegin` to `private`. r...
[gecko.git] / testing / mozbase / mozdebug / setup.py
blob105be2f8d0a6aec83d596a1a4280011bdcc9317d
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_VERSION = "0.3.0"
10 DEPS = ["mozinfo"]
13 setup(
14 name="mozdebug",
15 version=PACKAGE_VERSION,
16 description="Utilities for running applications under native code debuggers "
17 "intended for use in Mozilla testing",
18 long_description="see https://firefox-source-docs.mozilla.org/mozbase/index.html",
19 classifiers=[
20 "Programming Language :: Python :: 2.7",
21 "Programming Language :: Python :: 3.6",
23 # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
24 keywords="mozilla",
25 author="Mozilla Automation and Testing Team",
26 author_email="tools@lists.mozilla.org",
27 url="https://wiki.mozilla.org/Auto-tools/Projects/Mozbase",
28 license="MPL",
29 packages=["mozdebug"],
30 include_package_data=True,
31 zip_safe=False,
32 install_requires=DEPS,