Metadata-Version: 2.1
Name: ezdbg
Version: 0.0.0
Summary: easy func debug tool
Home-page: https://github.co.jp/
Author: le_lattelle
Author-email: g.tiger.ml@gmail.com
License: CC0 v1.0
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development :: Libraries
Classifier: License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication
Description-Content-Type: text/markdown
Requires-Dist: relpath
Requires-Dist: ezpip
Requires-Dist: sout
Requires-Dist: fies (>=1.2.3)

# ezdbg

下の方に日本語の説明があります

## Overview
- easy func debug tool
- description is under construction

## Usage
- recording (record arguments of the target function)
```python
import ezdbg

@ezdbg.rec
def func(x):
	return x ** 2

func(17)
```

- unit test of the function (Only the function is executed.)
```python
import ezdbg

@ezdbg.test	# 【！】REWRITE HERE
def func(x):
	return x ** 2

func(17)
```

## 概要
- python関数を簡単にデバッグできるツール
- 説明は執筆中です

## 使い方
- 記録時 (関数の引数を記録)
```python
import ezdbg

@ezdbg.rec
def func(x):
	return x ** 2

func(17)
```

- 関数単体テスト時 (その関数のみが実行される)
```python
import ezdbg

@ezdbg.test	# 【！】ここを書き換える
def func(x):
	return x ** 2

func(17)
```


