Metadata-Version: 2.1
Name: pysts
Version: 0.9.37
Summary: Basic python utilities
Home-page: https://github.com/sdswart/pysts.git
Author: Stephen Swart
License: MIT
Download-URL: https://github.com/sdswart/pysts/archive/v_0.9.37.tar.gz
Keywords: utilities
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Requires-Dist: setuptools
Requires-Dist: wheel
Requires-Dist: twine
Requires-Dist: numpy
Requires-Dist: pandas
Requires-Dist: plotly
Requires-Dist: dash
Requires-Dist: dash-core-components
Requires-Dist: dash-bootstrap-components
Requires-Dist: dash-html-components
Requires-Dist: dash-table

[![Download](https://img.shields.io/pypi/v/pysts?label=pysts)](https://pypi.org/project/pysts/)          [![License](https://img.shields.io/pypi/l/pysts)](https://pypi.org/project/pysts/)          [![Status](https://img.shields.io/pypi/status/pysts)](https://pypi.org/project/pysts/)          [![Build Status](https://travis-ci.com/sdswart/pysts.svg?branch=master)](https://travis-ci.com/sdswart/pysts)          [![Coverage Status](https://coveralls.io/repos/github/sdswart/pysts/badge.svg?branch=dev)](https://coveralls.io/github/sdswart/pysts?branch=dev)          [![Python](https://img.shields.io/badge/python-3.9-blue.svg)](https://www.python.org/downloads/release/python-390/)

# description

This is a utility package composed of several modules.

# Installation

`pip install pysts`

## Tests

If the module is installed through pip:
`pytest`

Run the tests from the local setup directory:
`python -m pytest`


## Code coverage

Generate coverage report with: `py.test --cov=python_utils tests/`

####  before_script:
####    - bumpversion minor setup.py
####    or
####    - bumpversion --new-version 0.9.13 setup.py
####  script:
####    - pip install --user --upgrade setuptools wheel twine numpy
####    - python setup.py sdist bdist_wheel
####    - python -m twine upload --repository-url https://upload.pypi.org/legacy/ dist/pysts-0.9.13* -u USERNAME -p PASSWORD
NOTE: Delete previous builds before uploading

####  Add pypi repo:
####    - pip config --user set global.gtlpypi https://pypi.gtl.fyi/simple/

####  download:
####    - pip install --upgrade -i https://pypi.gtl.fyi/simple pysts
OR
####    -pip install --upgrade git+https://github.com/sdswart/pysts.git


