Merge inbound to m-c on a CLOSED TREE.
[gecko.git] / testing / peptest / setup.py
blob6510167f858442a1e98f31cb65100536542906a1
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 import os
6 from setuptools import setup, find_packages
8 try:
9 here = os.path.dirname(os.path.abspath(__file__))
10 description = file(os.path.join(here, 'README.md')).read()
11 except IOError:
12 description = ''
14 version = "1.0"
16 dependencies = ['ManifestDestiny',
17 'mozhttpd',
18 'mozlog',
19 'mozprofile >= 0.1',
20 'mozprocess',
21 'mozrunner >= 3.0b3',
24 setup(name='peptest',
25 version=version,
26 description="""
27 Peptest is an automated testing framework designed to test whether or not the browser's
28 UI thread remains responsive while performing a variety of actions. Tests are simple
29 Javascript files which can optionally import Mozmill's driver to manipulate the user
30 interface in an automated fashion.
31 """,
32 long_description=description,
33 classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers
34 author='Andrew Halberstadt',
35 author_email='ahalberstadt@mozilla.com',
36 url='https://wiki.mozilla.org/Auto-tools/Projects/peptest',
37 license='MPL 2.0',
38 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
39 include_package_data=True,
40 package_data={'': ['*.js', '*.css', '*.html', '*.txt', '*.xpi', '*.rdf', '*.xul', '*.jsm', '*.xml'],},
41 zip_safe=False,
42 install_requires=dependencies,
43 entry_points="""
44 # -*- Entry points: -*-
45 [console_scripts]
46 peptest = peptest.runpeptests:main
47 """,