Metadata-Version: 2.4
Name: opsramp-analytics-utils
Version: 4.0.5
Summary: OpsRamp Analytics SDK
Author: OpsRamp
Author-email: opsramp@support.com
License: MIT
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: boto3==1.40.14
Requires-Dist: botocore==1.40.14
Requires-Dist: openpyxl==3.0.7
Requires-Dist: flask==3.1.3
Requires-Dist: dash==4.1.0
Requires-Dist: requests==2.32.4
Requires-Dist: Werkzeug==3.1.6
Requires-Dist: urllib3==2.6.3
Requires-Dist: pytz
Requires-Dist: xlsxwriter==3.2.0
Requires-Dist: pyyaml
Requires-Dist: setuptools==78.1.1
Requires-Dist: google-cloud-storage
Requires-Dist: azure-storage-blob
Requires-Dist: azure-identity
Requires-Dist: wheel==0.46.3
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: license
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

## OpsRamp Analytics Utilities

This is the SDK for writing OpsRamp analytics apps. It is based on [dash](https://plotly.com/dash/), and it has a number of utility functions.

It contains [analysis wrapper project](https://github.com/opsramp/analysis-wrapper).

It is published on [Pypi](https://pypi.org/project/opsramp-analytics-utils/)

#### How to publish on Pypi

After make updates on SDK, modify the version in _setup.py_.

```
python setup.py sdist bdist_wheel
python -m twine upload dist/*

Note: if above command not works, then use below command
python -m twine upload --skip-existing dist/*
```

- To upgrade the sdk for your app
```
pip install --no-cache-dir --upgrade opsramp-analytics-utils
```
