diff options
author | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
---|---|---|
committer | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
commit | 5f8de423f190bbb79a62f804151bc24824fa32d8 (patch) | |
tree | 10027f336435511475e392454359edea8e25895d /testing/talos/setup.py | |
parent | 49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff) | |
download | UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip |
Add m-esr52 at 52.6.0
Diffstat (limited to 'testing/talos/setup.py')
-rw-r--r-- | testing/talos/setup.py | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/testing/talos/setup.py b/testing/talos/setup.py new file mode 100644 index 000000000..ad8612b15 --- /dev/null +++ b/testing/talos/setup.py @@ -0,0 +1,55 @@ +import os +from setuptools import setup, find_packages + +try: + here = os.path.dirname(os.path.abspath(__file__)) + description = open(os.path.join(here, 'README')).read() +except OSError: + description = '' + +version = "0.0" + +with open(os.path.join(here, "requirements.txt")) as f: + dependencies = f.read().splitlines() + +dependency_links = [] + +setup(name='talos', + version=version, + description="Performance testing framework for Windows, Mac and Linux.", + long_description=description, + classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers + author='Mozilla Foundation', + author_email='tools@lists.mozilla.org', + url='https://wiki.mozilla.org/Buildbot/Talos', + license='MPL', + packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), + include_package_data=True, + package_data={'': ['*.config', + '*.css', + '*.gif', + '*.htm', + '*.html', + '*.ico', + '*.js', + '*.json', + '*.manifest', + '*.php', + '*.png', + '*.rdf', + '*.sqlite', + '*.svg', + '*.xml', + '*.xul', + ]}, + zip_safe=False, + install_requires=dependencies, + dependency_links=dependency_links, + entry_points=""" + # -*- Entry points: -*- + [console_scripts] + talos = talos.run_tests:main + talos-results = talos.results:main + """, + test_suite="tests" + ) |