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/.
4
5from __future__ import absolute_import
6
7from setuptools import setup
8
9
10PACKAGE_NAME = "mozleak"
11PACKAGE_VERSION = "1.0.0"
12
13
14setup(
15    name=PACKAGE_NAME,
16    version=PACKAGE_VERSION,
17    description="Library for extracting memory leaks from leak logs files",
18    long_description="see https://firefox-source-docs.mozilla.org/mozbase/index.html",
19    classifiers=[
20        "Programming Language :: Python :: 2.7",
21        "Programming Language :: Python :: 3.5",
22    ],
23    # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
24    keywords="mozilla",
25    author="Mozilla Automation and Tools team",
26    author_email="tools@lists.mozilla.org",
27    url="https://wiki.mozilla.org/Auto-tools/Projects/Mozbase",
28    license="MPL",
29    packages=["mozleak"],
30    zip_safe=False,
31    install_requires=[],
32)
33