Metadata-Version: 2.1
Name: credmarkutils
Version: 0.0.1
Summary: Credmark Utils
Home-page: https://github.com/credmark/credmarkutils
Author: Nishchal Gaba
Author-email: nishchal@credmark.com
License: UNKNOWN
Platform: UNKNOWN
Description-Content-Type: text/markdown
Provides-Extra: dev
Requires-Dist: pytest (>=3.7) ; extra == 'dev'

# Credmark Utils
The purpose of this project is to create pythonic wrappers and tools for blockchain interaction.

## Installation
Run the following to install:
```python
pip install credmarkutils
```


## Usage
```python
from helloworld import say_hello

# Generate "Hello, World!"
say_hello()

# Generate "Hello, Everybody!"
say_hello("Everybody")
```

# Developing Credmark Utils
To install credmarkutils, along with the tools you need to develop and run tests, run the following in your virtualenv:

```bash
$ pip install -e .[dev]
```

