Metadata-Version: 2.1
Name: nwa-stdlib
Version: 1.4.0
Summary: The NWA-stdlib module.
Home-page: https://github.com/workfloworchestrator/nwa-stdlib
Author: SURF
Author-email: automation-beheer@surf.nl
Requires-Python: >3.9
Description-Content-Type: text/markdown
Classifier: Intended Audience :: Information Technology
Classifier: Intended Audience :: System Administrators
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python
Classifier: Topic :: Internet
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development
Classifier: Typing :: Typed
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Telecommunications Industry
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.10
Requires-Dist: structlog~=20.2.0
Requires-Dist: colorama~=0.4.3
Requires-Dist: bumpversion ; extra == "dev"
Requires-Dist: pre-commit ; extra == "dev"
Requires-Dist: black ; extra == "test"
Requires-Dist: flake8 ; extra == "test"
Requires-Dist: flake8-bandit ; extra == "test"
Requires-Dist: flake8-bugbear ; extra == "test"
Requires-Dist: flake8-comprehensions ; extra == "test"
Requires-Dist: flake8-docstrings ; extra == "test"
Requires-Dist: flake8-logging-format ; extra == "test"
Requires-Dist: flake8-pep3101 ; extra == "test"
Requires-Dist: flake8-print ; extra == "test"
Requires-Dist: isort ; extra == "test"
Requires-Dist: mypy ; extra == "test"
Requires-Dist: mypy_extensions ; extra == "test"
Requires-Dist: pytest ; extra == "test"
Project-URL: Documentation, https://workfloworchestrator.org/
Provides-Extra: dev
Provides-Extra: test

# Network Automation Standard Library

This library contains the functions and utilities that are shared by most
Network Automation projects built at SURF.

## Getting started

If you want to use a virtual environment first create the environment:

```bash
pip install flit
```
And then run the following commands:

If you want to enhance of develop bug fixes for `nwastdlib` it's easiest to run the following commands:
```bash
flit install --deps develop --symlink
```


## To run tests
```
pytest
```

