setup.py (771B)
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 5 from setuptools import setup 6 7 VERSION = 0.1 8 DEPS = ["mozlog >= 6.0"] 9 10 setup( 11 name="mozlint", 12 description="Framework for registering and running micro lints", 13 license="MPL 2.0", 14 author="Andrew Halberstadt", 15 author_email="ahalberstadt@mozilla.com", 16 url="", 17 packages=["mozlint"], 18 version=VERSION, 19 classifiers=[ 20 "Environment :: Console", 21 "Development Status :: 3 - Alpha", 22 "License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)", 23 "Natural Language :: English", 24 ], 25 install_requires=DEPS, 26 )