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 setuptools import setup, find_packages
6
7PACKAGE_NAME = 'mozlog'
8PACKAGE_VERSION = '3.4'
9
10setup(name=PACKAGE_NAME,
11      version=PACKAGE_VERSION,
12      description="Robust log handling specialized for logging in the Mozilla universe",
13      long_description="see http://mozbase.readthedocs.org/",
14      author='Mozilla Automation and Testing Team',
15      author_email='tools@lists.mozilla.org',
16      url='https://wiki.mozilla.org/Auto-tools/Projects/Mozbase',
17      license='MPL 1.1/GPL 2.0/LGPL 2.1',
18      packages=find_packages(),
19      zip_safe=False,
20      install_requires=["blessings>=1.3"],
21      tests_require=['mozfile'],
22      platforms=['Any'],
23      classifiers=['Development Status :: 4 - Beta',
24                   'Environment :: Console',
25                   'Intended Audience :: Developers',
26                   'License :: OSI Approved :: Mozilla Public License 1.1 (MPL 1.1)',
27                   'Operating System :: OS Independent',
28                   'Topic :: Software Development :: Libraries :: Python Modules',
29                   ],
30      package_data={"mozlog": ["formatters/html/main.js",
31                               "formatters/html/style.css"]},
32      entry_points={
33          "console_scripts": [
34              "structlog = mozlog.scripts:main"
35          ],
36          'pytest11': [
37              'mozlog = mozlog.pytest_mozlog.plugin',
38          ]}
39      )
40