Metadata-Version: 2.4
Name: easy_use_tools
Version: 1.0.9
Summary: An easy use tools package
Home-page: https://github.com/XXX
Author: yuanyang.li
Author-email: "yuanyang.li" <yuanyang.edison.li@gmail.com>
License: Copyright (c) 2021 The Python Packaging Authority
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: shortuuid
Requires-Dist: tomli
Requires-Dist: requests>=2.25.1
Requires-Dist: numpy>=1.19.5
Requires-Dist: shortuuid
Requires-Dist: py-cpuinfo
Requires-Dist: better_exceptions
Requires-Dist: prettytable
Requires-Dist: pyautogui
Requires-Dist: mss
Requires-Dist: wmi; sys_platform == "win32"
Provides-Extra: dev
Requires-Dist: pytest>=7.0.0; extra == "dev"
Requires-Dist: black>=23.0.0; extra == "dev"
Requires-Dist: mypy>=1.0.0; extra == "dev"
Provides-Extra: test
Requires-Dist: pytest>=7.0.0; extra == "test"
Requires-Dist: pytest-cov; extra == "test"
Provides-Extra: docs
Requires-Dist: sphinx; extra == "docs"
Requires-Dist: furo; extra == "docs"
Dynamic: author
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-python

# 通用工具集
这是一个通用工具集, 适用于>=Python3.8

## 1. 准备
### 1.1 安装依赖
```
pip3 install --upgrade packaging setuptools wheel twine
```
## 2. 命令说明
### 2.1 打包
```
使用build打包: python3 -m build (在包含 pyproject.toml的项目根目录下,同时需要安装构建工具: python3 -m pip install --upgrade pip build)
```
在当前dist目录下的两个文件是要上传到 PyPi 网站上供别人下载安装的（*.tar.gz、*.whl）

### 2.2 上传前检查
```
twine check dist/*
```
### 2.3 执行上传
```
twine upload dist/*
```
### 2.4清理
```
rm -rf build/ dist/ *.egg-info/
```
## 3. 其他说明
- 本地安装使用(本地安装而不使用pip安装)
```
python3 setup.py install
```
- 安装此工具包
```
全量依赖安装:pip3 install easy_use_tools -i https://pypi.org/simple/
部分依赖安装:pip3 install easy_use_tools[dev] -i https://pypi.org/simple/
```
- 升级此工具包
```
pip3 install --upgrade easy_use_tools -i https://pypi.org/simple/
```
## 4. 使用说明
详见当前项目的README_USE.md文件
