Metadata-Version: 2.1
Name: environ-loader
Version: 0.0.2
Summary: Environ Loader
Home-page: https://github.com/CD3/environ-loader
License: MIT
Author: CD Clark III
Author-email: clifton.clark@gmail.com
Requires-Python: >=3.7,<4.0
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Dist: click (>=8.0.1)
Project-URL: Changelog, https://github.com/CD3/environ-loader/releases
Project-URL: Documentation, https://environ-loader.readthedocs.io
Project-URL: Repository, https://github.com/CD3/environ-loader
Description-Content-Type: text/markdown

# Environ Loader

A module for loading environment variables from various sources, like Windows .bat files and Bash .sh files.

Sometimes when writing a Python script, you want to load environment variables are defined in a text file. For example, when running Conan with the virtualenv generator,
Conan will generate shell files for Windows and Linux that contain variables like PATH that are configured to use the library/tool. So, if you are installing
a tool that the script uses with Conan, then you will have to load the environment variables before calling the tool. This is actually the original motivation
for the module.

It is not very sophisticated yet, only simple variable declarations are supported right now (for examples, Bash's $VAR style variable expansion is not supported, only ${VAR}).

## Features

- TODO

## Requirements

- TODO

## Installation

You can install _Environ Loader_ via [pip] from [PyPI]:

```console
$ pip install environ-loader
```

## License

Distributed under the terms of the [MIT license][license],
_Environ Loader_ is free and open source software.


