Metadata-Version: 2.1
Name: netbox-circuitmaintenance
Version: 0.1.0
Summary: Provides circuit maintenance management features via a Netbox plugin
Home-page: https://github.com/jasonyates/netbox_circuitmaintenance
Author: Jason Yates
Author-email: Jason Yates <me@jasonyates.co.uk>
License: 
        
Project-URL: Homepage, https://github.com/jasonyates/netbox-circuitmaintenance
Keywords: netbox_circuitmaintenance
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Provides-Extra: dev
Requires-Dist: black ; extra == 'dev'
Requires-Dist: bumpver ; extra == 'dev'
Requires-Dist: isort ; extra == 'dev'
Requires-Dist: pip-tools ; extra == 'dev'
Requires-Dist: pytest ; extra == 'dev'

=================================
# Netbox Circuit Maintenance Plugin
=================================

NetBox plugin for managing Circuit Maintenance events.


* Free software: Apache-2.0
* This plugin is still in development. Use at your own risk.


## Features

Provides the ability to record circuit maintenance, maintenance impact and maintenance notifications in Netbox and link them to Providers and Circuits.

## Compatibility

| NetBox Version | Plugin Version |
|----------------|----------------|
|     3.4        |      0.1.0     |

## Installing

While this is still in development and not yet on pypi you can install with pip:

```bash
pip install git+https://github.com/jasonyates/netbox_circuitmaintenance
```

or by adding to your `local_requirements.txt` or `plugin_requirements.txt` (netbox-docker):

```bash
git+https://github.com/jasonyates/netbox_circuitmaintenance
```

Enable the plugin in `/opt/netbox/netbox/netbox/configuration.py`,
 or if you use netbox-docker, your `/configuration/plugins.py` file :

```python
PLUGINS = [
    'netbox_circuitmaintenance'
]

PLUGINS_CONFIG = {
    "netbox_circuitmaintenance": {},
}
```

## Credits

Based on the NetBox plugin tutorial:

- [demo repository](https://github.com/netbox-community/netbox-plugin-demo)
- [tutorial](https://github.com/netbox-community/netbox-plugin-tutorial)

This package was created with [Cookiecutter](https://github.com/audreyr/cookiecutter) and the [`netbox-community/cookiecutter-netbox-plugin`](https://github.com/netbox-community/cookiecutter-netbox-plugin) project template.
