2012-09-07 17:58:39 -07:00
|
|
|
# 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/.
|
|
|
|
|
2014-02-19 13:42:01 -08:00
|
|
|
from setuptools import setup, find_packages
|
2012-09-07 17:58:39 -07:00
|
|
|
|
2014-08-21 14:50:54 -07:00
|
|
|
PACKAGE_VERSION = '0.7'
|
2012-09-07 17:58:39 -07:00
|
|
|
|
|
|
|
# dependencies
|
|
|
|
deps = ['mozinfo']
|
|
|
|
|
|
|
|
setup(name='moztest',
|
|
|
|
version=PACKAGE_VERSION,
|
|
|
|
description="Package for storing and outputting Mozilla test results",
|
2013-07-25 13:27:53 -07:00
|
|
|
long_description="see http://mozbase.readthedocs.org/",
|
2012-09-07 17:58:39 -07:00
|
|
|
classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
|
|
|
|
keywords='mozilla',
|
|
|
|
author='Mozilla Automation and Tools team',
|
|
|
|
author_email='tools@lists.mozilla.org',
|
2013-07-25 13:27:53 -07:00
|
|
|
url='https://wiki.mozilla.org/Auto-tools/Projects/Mozbase',
|
2012-09-07 17:58:39 -07:00
|
|
|
license='MPL',
|
2014-02-19 13:42:01 -08:00
|
|
|
packages=find_packages(),
|
2012-09-07 17:58:39 -07:00
|
|
|
include_package_data=True,
|
|
|
|
zip_safe=False,
|
|
|
|
install_requires=deps,
|
|
|
|
)
|