This repository was archived by the owner on Jan 12, 2022. It is now read-only.
forked from ahal/peptest
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
48 lines (43 loc) · 1.77 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this file,
# You can obtain one at http://mozilla.org/MPL/2.0/.
import os
from setuptools import setup, find_packages
try:
here = os.path.dirname(os.path.abspath(__file__))
description = file(os.path.join(here, 'README.md')).read()
except IOError:
description = ''
version = "1.0"
dependencies = ['ManifestDestiny',
'mozhttpd',
'mozlog',
'mozprofile >= 0.1',
'mozprocess',
'mozrunner >= 3.0b3',
]
setup(name='peptest',
version=version,
description="""
Peptest is an automated testing framework designed to test whether or not the browser's
UI thread remains responsive while performing a variety of actions. Tests are simple
Javascript files which can optionally import Mozmill's driver to manipulate the user
interface in an automated fashion.
""",
long_description=description,
classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers
author='Andrew Halberstadt',
author_email='[email protected]',
url='https://wiki.mozilla.org/Auto-tools/Projects/peptest',
license='MPL 2.0',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
package_data={'': ['*.js', '*.css', '*.html', '*.txt', '*.xpi', '*.rdf', '*.xul', '*.jsm', '*.xml'],},
zip_safe=False,
install_requires=dependencies,
entry_points="""
# -*- Entry points: -*-
[console_scripts]
peptest = peptest.runpeptests:main
""",
)