Bug 1890277: part 4) Add CSPParser support for the `trusted-types` directive, guarded...
[gecko.git] / testing / mozbase / mozgeckoprofiler / setup.py
blob0c7949cae9f160ccab7b3eb825eb9407636add59
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 = "mozgeckoprofiler"
8 PACKAGE_VERSION = "1.0.0"
10 setup(
11 name=PACKAGE_NAME,
12 version=PACKAGE_VERSION,
13 description="Library to generate and view performance data in the Firefox Profiler",
14 long_description="see https://firefox-source-docs.mozilla.org/mozgeckoprofiler/index.html",
15 classifiers=[
16 "Programming Language :: Python :: 2",
17 "Programming Language :: Python :: 2.7",
18 "Programming Language :: Python :: 3",
19 "Programming Language :: Python :: 3.5",
20 "License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
22 keywords="mozilla",
23 author="Mozilla Automation and Tools team",
24 author_email="tools@lists.mozilla.org",
25 url="https://wiki.mozilla.org/Auto-tools/Projects/Mozbase",
26 license="MPL",
27 packages=["mozgeckoprofiler"],
28 include_package_data=True,
29 zip_safe=False,
30 install_requires=[],
31 tests_require=[],