Bug 1890277: part 4) Add CSPParser support for the `trusted-types` directive, guarded...
[gecko.git] / testing / mozbase / mozscreenshot / setup.py
blob17a9dc9ccb04de6dbb1b28c691bd41ce42a47779
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 = "mozscreenshot"
8 PACKAGE_VERSION = "1.0.0"
11 setup(
12 name=PACKAGE_NAME,
13 version=PACKAGE_VERSION,
14 description="Library for taking screenshots in tests harness",
15 long_description="see https://firefox-source-docs.mozilla.org/mozbase/index.html",
16 classifiers=[
17 "Programming Language :: Python :: 2.7",
18 "Programming Language :: Python :: 3.5",
20 # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
21 keywords="mozilla",
22 author="Mozilla Automation and Tools team",
23 author_email="tools@lists.mozilla.org",
24 url="https://wiki.mozilla.org/Auto-tools/Projects/Mozbase",
25 license="MPL",
26 packages=["mozscreenshot"],
27 zip_safe=False,
28 install_requires=["mozlog", "mozinfo"],