Bug 1856942: part 5) Factor async loading of a sheet out of `Loader::LoadSheet`....
[gecko.git] / testing / awsy / setup.py
blob1c3f4f0db09ca592573518685127ff267321447e
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 find_packages, setup
7 PACKAGE_NAME = "awsy"
8 PACKAGE_VERSION = "0.0.1"
10 setup(
11 name=PACKAGE_NAME,
12 version=PACKAGE_VERSION,
13 description="AreWeSlimYet",
14 long_description="A memory testing framework for Firefox.",
15 author="Mozilla Automation and Testing Team",
16 author_email="tools@lists.mozilla.org",
17 license="MPL 1.1/GPL 2.0/LGPL 2.1",
18 packages=find_packages(),
19 zip_safe=False,
20 install_requires=["marionette_harness", "PyYaml"],
21 classifiers=[
22 "Development Status :: 4 - Beta",
23 "Environment :: Console",
24 "Intended Audience :: Developers",
25 "License :: OSI Approved :: Mozilla Public License 1.1 (MPL 1.1)",
26 "Operating System :: OS Independent",
27 "Topic :: Software Development :: Libraries :: Python Modules",