setup.py 769 B

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