Metadata-Version: 2.1
Name: nodestream-plugin-dotenv
Version: 0.5.1
Summary: A plugin to nodestream for loading environment variables from a .env file
Home-page: https://github.com/nodestream-proj/nodestream
License: GPL-3.0-only
Keywords: etl,neo4j,declarative,data,kafka,ingest,nodestream
Author: Zach Probst
Author-email: Zach_Probst@intuit.com
Requires-Python: >=3.10,<4.0
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Information Technology
Classifier: License :: OSI Approved :: GNU Affero General Public License v3
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Topic :: Database
Requires-Dist: nodestream (>=0.5.0,<0.6.0)
Requires-Dist: python-dotenv (>=1.0.0,<2.0.0)
Project-URL: Documentation, https://nodestream-proj.github.io/nodestream-plugin-dotenv
Project-URL: Repository, https://github.com/nodestream-proj/nodestream-plugin-dotenv
Description-Content-Type: text/markdown

# Nodestream Dotenv Plugin

This plugin allows you to load environment variables from a `.env` file into your nodestream application.

## Installation

```bash
pip install nodestream-plugin-dotenv
```

## Usage

By default, the plugin will look for a `.env` file in the current working directory. You can specify a different path by setting the `NODESTREAM_DOTENV_PATH` environment variable.

For more information on how to use the `.env` file, see the [python-dotenv](https://github.com/theskumar/python-dotenv#file-format) documentation.
