michael@0: # This Source Code Form is subject to the terms of the Mozilla Public michael@0: # License, v. 2.0. If a copy of the MPL was not distributed with this file, michael@0: # You can obtain one at http://mozilla.org/MPL/2.0/. michael@0: michael@0: from setuptools import setup, find_packages michael@0: michael@0: PACKAGE_NAME = 'mozlog' michael@0: PACKAGE_VERSION = '1.7' michael@0: michael@0: setup(name=PACKAGE_NAME, michael@0: version=PACKAGE_VERSION, michael@0: description="Robust log handling specialized for logging in the Mozilla universe", michael@0: long_description="see http://mozbase.readthedocs.org/", michael@0: author='Mozilla Automation and Testing Team', michael@0: author_email='tools@lists.mozilla.org', michael@0: url='https://wiki.mozilla.org/Auto-tools/Projects/Mozbase', michael@0: license='MPL 1.1/GPL 2.0/LGPL 2.1', michael@0: packages=find_packages(), michael@0: zip_safe=False, michael@0: tests_require=['mozfile'], michael@0: platforms =['Any'], michael@0: classifiers=['Development Status :: 4 - Beta', michael@0: 'Environment :: Console', michael@0: 'Intended Audience :: Developers', michael@0: 'License :: OSI Approved :: Mozilla Public License 1.1 (MPL 1.1)', michael@0: 'Operating System :: OS Independent', michael@0: 'Topic :: Software Development :: Libraries :: Python Modules', michael@0: ] michael@0: )