Bug 1735858 [wpt PR 31247] - App history: make it mostly nonfunctional for opaque...
[gecko.git] / testing / awsy / setup.py
blob61dd98ff7883d90377b51c18c8cdd5cac8dcfabe
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, find_packages
9 PACKAGE_NAME = "awsy"
10 PACKAGE_VERSION = "0.0.1"
12 setup(
13 name=PACKAGE_NAME,
14 version=PACKAGE_VERSION,
15 description="AreWeSlimYet",
16 long_description="A memory testing framework for Firefox.",
17 author="Mozilla Automation and Testing Team",
18 author_email="tools@lists.mozilla.org",
19 license="MPL 1.1/GPL 2.0/LGPL 2.1",
20 packages=find_packages(),
21 zip_safe=False,
22 install_requires=["marionette_harness", "PyYaml"],
23 classifiers=[
24 "Development Status :: 4 - Beta",
25 "Environment :: Console",
26 "Intended Audience :: Developers",
27 "License :: OSI Approved :: Mozilla Public License 1.1 (MPL 1.1)",
28 "Operating System :: OS Independent",
29 "Topic :: Software Development :: Libraries :: Python Modules",