setup.py (1027B)
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/. 4 5 from setuptools import find_packages, setup 6 7 PACKAGE_NAME = "awsy" 8 PACKAGE_VERSION = "0.0.1" 9 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", 28 ], 29 )