energy-dashboard-library

Energy Dashboard Library


Licenses
GPL-3.0/GPL-3.0+
Install
pip install energy-dashboard-library==0.48

Documentation

Energy Dashboard Library (EDL)

This is a collection of common library functions used by the Energy Dashboard, a project of the Energy Analytics Project.

Overview

Common utility functions are used by:

This is probably only interesting to project maintainers. Tool users will want to look at energy-dashboard-cli.

Dependencies

Getting Started

# only required the first time around, creates a conda environment named 'eap-dev'
make setup

# activate the created conda environment
conda activate eap-dev

# build
make build

Publishing

  • Ensure that you have a valid account and that your account has permissions to push to this project.
  • Ensure that your ~/.pypirc file is up to date. Note that I'm using auth tokens below:
[distutils]
index-servers=
    pypi
    testpypi

[testpypi]
repository: https://test.pypi.org/legacy/
username: __token__
password: pypi-...elided...

[pypi]
username: __token__
password: pypi-...elided...
  • Publish to test first
# publish
make test-publish
  • If that worked, then publish to prod
# publish
make prod-publish

Links

Author

Todd Greenwood-Geer (Enviro Software Solutions, LLC)