Metadata-Version: 2.1
Name: GmoCoin
Version: 0.0.13
Summary: GMO Coin Client
Home-page: https://github.com/amashita/GmoCoin
Author: amashita
License: Apache License 2.0
Platform: UNKNOWN
Description-Content-Type: text/markdown
License-File: LICENSE

[![Gitpod ready-to-code](https://img.shields.io/badge/Gitpod-ready--to--code-blue?logo=gitpod)](https://gitpod.io/#https://github.com/amashita/GmoCoin)

# GmoCoin

## Description

GMOコインのAPIラッパーです。

### API仕様

https://api.coin.z.com/docs/#outline

## Requirement

* Python 3.6

## Installation

```
pip install GmoCoin
```

## Usage

[APIラッパーリファレンス](https://amashita.github.io/GmoCoin/)

## Development

### Launch gitpod

[gitpod](https://gitpod.io/#https://github.com/amashita/GmoCoin)

### run test

* tests/api_conf.jsonを作成する

```
{
    "API_KEY":"AAA",
    "SECRET_KEY":"BBB"
}
```

* テストコマンド実行

```
pipenv run pytest
```

### GenerateDoc

```
pipenv run sphinx-apidoc -f -o docs/source gmocoin
pipenv run sphinx-build -b html docs/source docs/build
```

### upload pypi

```
python setup.py sdist --formats=zip
twine upload dist/*
twine upload -r pypitest dist/*
```

```
twine upload -r pypitest dist/*
```

```
twine upload dist/*
```


## License

[Apache License Version 2.0](LICENSE)

## Author

amashita


