Metadata-Version: 2.4
Name: context_logger_wrapper
Version: 0.0.1
Summary: Context Logger Wrapper
Home-page: https://github.com/maximz/context-logger-wrapper
Author: Maxim Zaslavsky
Author-email: maxim@maximz.com
License: MIT license
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: log-with-context
Requires-Dist: extendanything
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license
Dynamic: license-file
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# Context Logger Wrapper

[![](https://img.shields.io/pypi/v/context_logger_wrapper.svg)](https://pypi.python.org/pypi/context_logger_wrapper)
[![CI](https://github.com/maximz/context-logger-wrapper/actions/workflows/ci.yaml/badge.svg?branch=master)](https://github.com/maximz/context-logger-wrapper/actions/workflows/ci.yaml)
[![](https://img.shields.io/badge/docs-here-blue.svg)](https://context-logger-wrapper.maximz.com)
[![](https://img.shields.io/github/stars/maximz/context-logger-wrapper?style=social)](https://github.com/maximz/context-logger-wrapper)

## TODOs: Configuring this template

Create a Netlify site for your repository, then turn off automatic builds in Netlify settings.

Add these CI secrets: `PYPI_API_TOKEN`, `NETLIFY_AUTH_TOKEN` (Netlify user settings - personal access tokens), `DEV_NETLIFY_SITE_ID`, `PROD_NETLIFY_SITE_ID` (API ID from Netlify site settings)

Set up Codecov at TODO

## Overview

## Installation

```bash
pip install context_logger_wrapper
```

## Usage

## Development

Submit PRs against `develop` branch, then make a release pull request to `master`.

```bash
# Optional: set up a pyenv virtualenv
pyenv virtualenv 3.9 context_logger_wrapper-3.9
echo "context_logger_wrapper-3.9" > .python-version
pyenv version

# Install requirements
pip install --upgrade pip wheel
pip install -r requirements_dev.txt

# Install local package
pip install -e .

# Install pre-commit
pre-commit install

# Run tests
make test

# Run lint
make lint

# bump version before submitting a PR against master (all master commits are deployed)
bump2version patch # possible: major / minor / patch

# also ensure CHANGELOG.md updated
```


# Changelog

## 0.0.1

* First release on PyPI.
