Metadata-Version: 2.1
Name: strange
Version: 0.0.1
Summary: Online time series analysis
Home-page: https://github.com/MinRegret/strange
Author: Google AI Princeton
Author-email: dsuo@google.com
License: UNKNOWN
Keywords: timeseries,time,series,analysis
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.5
Description-Content-Type: text/markdown
Requires-Dist: numpy
Requires-Dist: scipy
Requires-Dist: cython
Requires-Dist: jax
Requires-Dist: jaxlib
Requires-Dist: scikit-learn
Requires-Dist: matplotlib
Provides-Extra: dev
Requires-Dist: flake8 ; extra == 'dev'
Requires-Dist: flake8-print ; extra == 'dev'
Requires-Dist: flake8-bugbear ; extra == 'dev'
Requires-Dist: mypy ; extra == 'dev'
Requires-Dist: pytest ; extra == 'dev'
Requires-Dist: pytest-xdist ; extra == 'dev'
Requires-Dist: pytest-cov ; extra == 'dev'
Requires-Dist: pylint ; extra == 'dev'
Requires-Dist: black ; extra == 'dev'
Requires-Dist: reorder-python-imports ; extra == 'dev'
Requires-Dist: autoflake ; extra == 'dev'
Requires-Dist: pre-commit ; extra == 'dev'
Requires-Dist: pydocstring-coverage ; extra == 'dev'
Requires-Dist: bumpversion ; extra == 'dev'
Requires-Dist: ipython ; extra == 'dev'
Requires-Dist: jupyter ; extra == 'dev'
Requires-Dist: pixiedust ; extra == 'dev'
Requires-Dist: ipdb ; extra == 'dev'

# strange
Online time series analysis

[![pypi](https://badgen.net/pypi/v/strange)](https://pypi.org/project/strange/)
[![build](https://github.com/MinRegret/strange/workflows/build/badge.svg)](https://github.com/danielsuo/strange/actions)
[![coverage](https://badgen.net/codecov/c/github/danielsuo/strange)](https://codecov.io/github/danielsuo/strange)
[![Documentation Status](https://readthedocs.org/projects/strange/badge/?version=latest)](https://strange.readthedocs.io/en/latest/?badge=latest)
[![doc coverage](https://raw.githubusercontent.com/MinRegret/strange/master/.github/badges/docstring_coverage.svg?sanitize=true)](https://readthedocs.org/projects/strange/)
[![tests](https://img.shields.io/azure-devops/tests/MinRegret/strange/1?compact_message)](https://dev.azure.com/danielsuo/strange/_build?definitionId=1&_a=summary)
[![smells](https://sonarcloud.io/api/project_badges/measure?project=danielsuo_strange&metric=code_smells)](https://sonarcloud.io/dashboard?id=danielsuo_strange)

## Setting up a development environment
[Insert typical language about using some python environment]. Within that
environment, run the following:

```python
# Install editable version of code
pip install -e .

# Install testing dependencies
pip install -e .[dev]

# Install pre-commit hooks
pre-commit install
```

## Contributing
We use the `pre-commit` tools to automatically lint (and fix, where possible)
for Python warnings, errors, and style. This runs automatically on `git commit`
and will either pass with no issue, make changes to files, and / or ask you to
make fixes. If the tests don't pass, the commit fails (a good thing! Keeps
history clean).

### Testing
We also use `pytest`, which we encourage you to run before contributing (`pytest
-n auto` for parallelized testing).

### Documentation
To update the doc coverage badge, run
```bash
docstring-coverage -b .github/badges/docstring_coverage.svg .
```

### Versioning
To update the version, run
```bash
bumpversion [major|minor|patch]
```

