Metadata-Version: 2.2
Name: woodw-toolkit
Version: 0.1.2
Summary: It is a toolkit that includes various common operations and will continue to be improved in the future.
Home-page: https://gitee.com/jinghewang/python-woodw-toolkit.git
Author: jinghewang
Author-email: jinghewang@163.com
License: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license
Dynamic: requires-python
Dynamic: summary

# toolkit
集微工具箱，包括各种常用操作，后续不断完善

### 构建
在项目文件夹中运行以下命令
```shell
python setup.py sdist bdist_wheel
```

### 上传：
```shell
python -m twine upload --repository-url https://upload.pypi.org/legacy/ dist/*
或
python -m twine upload dist/*
```
按照提示，输入pypi的用户名、密码，就可以成功了。若中途提示有些库没有安装，则使用pip安装一下，需要用到twine库。

### 使用

#### 安装或更新
pip3 install woodw_toolkit
pip3 install --upgrade woodw_toolkit

#### 代码使用
```python
from woodw_toolkit.common.func import *

print_line('hello')
```
