Metadata-Version: 2.1
Name: zope.mimetype
Version: 2.5.0
Summary: A simple package for working with MIME content types
Home-page: https://github.com/zopefoundation/zope.mimetype
Author: Zope Foundation and Contributors
Author-email: zope-dev@zope.org
License: ZPL 2.1
Description: zope.mimetype
        =============
        
        .. image:: https://img.shields.io/pypi/v/zope.mimetype.svg
                :target: https://pypi.python.org/pypi/zope.mimetype/
                :alt: Latest release
        
        .. image:: https://img.shields.io/pypi/pyversions/zope.mimetype.svg
                :target: https://pypi.org/project/zope.mimetype/
                :alt: Supported Python versions
        
        .. image:: https://travis-ci.org/zopefoundation/zope.mimetype.svg?branch=master
                :target: https://travis-ci.org/zopefoundation/zope.mimetype
        
        .. image:: https://coveralls.io/repos/github/zopefoundation/zope.mimetype/badge.svg?branch=master
                :target: https://coveralls.io/github/zopefoundation/zope.mimetype?branch=master
        
        .. image:: https://readthedocs.org/projects/zopemimetype/badge/?version=latest
                :target: https://zopemimetype.readthedocs.io/en/latest/
                :alt: Documentation Status
        
        This package provides a way to work with MIME content types.  There
        are several interfaces defined here, many of which are used primarily
        to look things up based on different bits of information.
        
        See complete documentation at https://zopemimetype.readthedocs.io/en/latest/
        
        
        =========
         Changes
        =========
        
        2.5.0 (2020-03-30)
        ==================
        
        - Add support for Python 3.8.
        
        - Drop support for Python 3.4.
        
        - Ensure all objects have consistent interface resolution orders. See
          `issue 17 <https://github.com/zopefoundation/zope.mimetype/issues/17>`_.
        
        
        2.4.0 (2018-10-16)
        ==================
        
        - Add support for Python 3.7.
        
        - Fix DeprecationWarnings for ``IObjectEvent`` and ``ObjectEvent`` by
          importing them from ``zope.interface.interfaces``. See `issue 14
          <https://github.com/zopefoundation/zope.mimetype/issues/14>`_.
        
        
        2.3.2 (2018-07-30)
        ==================
        
        - Documentation was moved to https://zopemimetype.readthedocs.io
        
        - Fix an AttributeError accessing the ``preferredCharset`` of an
          ``ICodecTerm`` when no ``ICodecPreferredCharset`` was registered.
        
        - Reach and automatically require 100% test coverage.
        
        2.3.1 (2018-01-09)
        ==================
        
        - Only try to register the browser stuff in the ZCA when `zope.formlib` is
          available as it breaks otherwise.
        
        
        2.3.0 (2017-09-28)
        ==================
        
        - Drop support for Python 3.3.
        
        - Move the dependencies on ``zope.browser``, ``zope.publisher`` and
          ``zope.formlib`` (only needed to use the ``source`` and ``widget``
          modules) into a new ``browser`` extra.
          See `PR 8 <https://github.com/zopefoundation/zope.mimetype/pull/8>`_.
        
        2.2.0 (2017-04-24)
        ==================
        
        - Fix `issue 6 <https://github.com/zopefoundation/zope.mimetype/issues/6>`_:
          ``typegetter.smartMimeTypeGuesser`` would raise ``TypeError`` on Python 3
          when the data was ``bytes`` and the ``content_type`` was ``text/html``.
        
        - Add support for Python 3.6.
        
        
        2.1.0 (2016-08-09)
        ==================
        
        - Add support for Python 3.5.
        
        - Drop support for Python 2.6.
        
        - Fix configuring the package via its included ZCML on Python 3.
        
        2.0.0 (2014-12-24)
        ==================
        
        - Add support for PyPy and PyPy3.
        
        - Add support for Python 3.4.
        
        - Restore the ability to write ``from zope.mimetype import types``.
        
        - Make ``configure.zcml`` respect the renaming of the ``types`` module
          so that it can be loaded.
        
        
        2.0.0a1 (2013-02-27)
        ====================
        
        - Add support for Python 3.3.
        
        - Replace deprecated ``zope.component.adapts`` usage with equivalent
          ``zope.component.adapter`` decorator.
        
        - Replace deprecated ``zope.interface.implements`` usage with equivalent
          ``zope.interface.implementer`` decorator.
        
        - Rename ``zope.mimetype.types`` to ``zope.mimetype.mtypes``.
        
        - Drop support for Python 2.4 and 2.5.
        
        
        1.3.1 (2010-11-10)
        ==================
        
        - No longer dependg on ``zope.app.form`` in ``configure.zcml`` by using
          ``zope.formlib`` instead, where the needed interfaces are living now.
        
        1.3.0 (2010-06-26)
        ==================
        
        - Add testing dependency on ``zope.component[test]``.
        
        - Use zope.formlib instead of zope.app.form.browser for select widget.
        
        - Conform to repository policy.
        
        1.2.0 (2009-12-26)
        ==================
        
        - Convert functional tests to unit tests and get rid of all extra test
          dependencies as a result.
        
        - Use the ITerms interface from zope.browser.
        
        - Declare missing dependencies, resolved direct dependency on
          zope.app.publisher.
        
        - Import content-type parser from ``zope.contenttype``, adding a dependency on
          that package.
        
        1.1.2 (2009-05-22)
        ==================
        
        - No longer depend on ``zope.app.component``.
        
        1.1.1 (2009-04-03)
        ==================
        
        - Fix wrong package version (version ``1.1.0`` was released as ``0.4.0`` at
          `pypi` but as ``1.1dev`` at `download.zope.org/distribution`)
        
        - Fix author email and home page address.
        
        1.1.0 (2007-11-01)
        ==================
        
        - Package data update.
        
        - First public release.
        
        1.0.0 (2007-??-??)
        ==================
        
        - Initial release.
        
Keywords: file content mimetype
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Zope Public License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Framework :: Zope :: 3
Provides-Extra: test
Provides-Extra: browser
Provides-Extra: docs
