Metadata-Version: 2.1
Name: hashkernel
Version: 2019.10
Summary: hashstore python kernel
Home-page: https://github.com/hashstore/hashkernel
Author: Walnut Geek
Author-email: wg@walnutgeek.com
License: Apache 2.0
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: System :: Archiving :: Backup
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown
Requires-Dist: nanotime
Requires-Dist: croniter
Requires-Dist: python-dateutil
Requires-Dist: pytz
Requires-Dist: aiofiles
Requires-Dist: aiohttp
Provides-Extra: dev
Requires-Dist: hs-build-tools ; extra == 'dev'
Requires-Dist: shiv ; extra == 'dev'
Requires-Dist: sniffer ; extra == 'dev'
Requires-Dist: coverage ; extra == 'dev'
Requires-Dist: mypy ; extra == 'dev'
Requires-Dist: wheel ; extra == 'dev'
Requires-Dist: twine ; extra == 'dev'
Requires-Dist: black ; extra == 'dev'
Requires-Dist: isort ; extra == 'dev'
Requires-Dist: pytest ; extra == 'dev'
Requires-Dist: pytest-mypy ; extra == 'dev'
Requires-Dist: pytest-cov ; extra == 'dev'
Requires-Dist: pyinotify ; extra == 'dev'

# hashkernel

[![Build Status](https://dev.azure.com/sekash/Public/_apis/build/status/hashstore.hashkernel?branchName=master)](https://dev.azure.com/sekash/Public/_build/latest?definitionId=3&branchName=master)
[![pypi_version](https://img.shields.io/pypi/v/hashkernel.svg)](https://pypi.python.org/pypi/hashkernel)
[![pypi_support](https://img.shields.io/pypi/pyversions/hashkernel.svg)](https://pypi.python.org/pypi/hashkernel)

Kernel to build and run python code inside hashstore

## Installation

```shell
pip install hashkernel
```

## Setup dev environment with conda

```shell
#
# Cleanup old environments
. deactivate
conda env remove -n hk36
conda env remove -n hk37
#
# Create envs
conda create -y -n hk36 python=3.6
conda create -y -n hk37 python=3.7
. activate hk37
pip install -e .[dev]
. deactivate
. activate hk36
pip install -e .[dev]
#
#run smoke test watcher
sniffer
```



