2012-09-08 04:58:39 +04: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/.
|
|
|
|
|
|
|
|
from setuptools import setup
|
|
|
|
|
2014-02-19 04:12:34 +04:00
|
|
|
PACKAGE_VERSION = '0.10'
|
2012-09-08 04:58:39 +04:00
|
|
|
|
|
|
|
# dependencies
|
2014-02-19 04:12:34 +04:00
|
|
|
deps = ['mozfile >= 0.12',
|
2013-03-22 08:06:28 +04:00
|
|
|
'mozlog']
|
2012-09-08 04:58:39 +04:00
|
|
|
|
2014-02-19 04:12:34 +04:00
|
|
|
setup(name='mozcrash',
|
2012-09-08 04:58:39 +04:00
|
|
|
version=PACKAGE_VERSION,
|
2013-01-08 04:41:35 +04:00
|
|
|
description="Library for printing stack traces from minidumps left behind by crashed processes",
|
|
|
|
long_description="see http://mozbase.readthedocs.org/",
|
2012-09-08 04:58:39 +04: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-26 00:27:53 +04:00
|
|
|
url='https://wiki.mozilla.org/Auto-tools/Projects/Mozbase',
|
2012-09-08 04:58:39 +04:00
|
|
|
license='MPL',
|
|
|
|
packages=['mozcrash'],
|
|
|
|
include_package_data=True,
|
|
|
|
zip_safe=False,
|
|
|
|
install_requires=deps,
|
|
|
|
)
|