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
3# file, You can obtain one at http://mozilla.org/MPL/2.0/.
4
5from __future__ import absolute_import
6
7from setuptools import setup
8
9VERSION = 0.1
10DEPS = ["mozlog>=3.4"]
11
12setup(
13    name='mozlint',
14    description='Framework for registering and running micro lints',
15    license='MPL 2.0',
16    author='Andrew Halberstadt',
17    author_email='ahalberstadt@mozilla.com',
18    url='',
19    packages=['mozlint'],
20    version=VERSION,
21    classifiers=[
22        'Environment :: Console',
23        'Development Status :: 3 - Alpha',
24        'License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)',
25        'Natural Language :: English',
26    ],
27    install_requires=DEPS,
28)
29