Source code for cheshire
"""A template repository for a Python package created by Catalyst Cooperative."""
import logging
import pkg_resources
# In order for the package modules to be available when you import the package,
# they need to be imported here somehow. Not sure if this is best practice though.
import cheshire.cli
import cheshire.dummy # noqa: F401
[docs]__long_description__ = """
This should be a paragraph long description of what the package does.
"""
# Create a root logger for use anywhere within the package.
logger.addHandler(logging.NullHandler())