Metadata-Version: 2.1
Name: everywhere
Version: 1.1
Summary: A globaly importable thread local variable. This utility package is literally two lines of code.
Home-page: https://github.com/SimonRovder/everywhere
Author: Simon Rovder
Author-email: simon.rovder@gmail.com
License: GPL
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.5
Description-Content-Type: text/markdown

# Everywhere

The everywhere package is a utility package that allows importing a single thread local variable form everywhere.

The only purpose of this package is to abstract the import location from any specific project or file.

Sample usage:
```
from everywhere import box

box.data = "This will be visible wherever else the box is imported."
```

## Building

Installation: `pip install --user --upgrade setuptools wheel`

Build with: `python setup.py sdist bdist_wheel`


