Metadata-Version: 2.1
Name: lzl_pytools
Version: 0.2.8
Summary: a multi run http req tool
Home-page: https://gitee.com/lzlcodex/lzl-pytools.git
Author: lzlcodex
Author-email: yishikong@163.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: six>=1.16.0
Requires-Dist: pyyaml>=6.0.2
Requires-Dist: requests>=2.32.4
Requires-Dist: aiohttp>=3.10.11
Requires-Dist: scikit-learn>=1.3.2
Requires-Dist: faker>=35.2.2

# lzl_pytools

```shell
python3 -m venv .pyenv
pip install --upgrade setuptools wheel twine

. .pyenv/bin/activate
rm -rf build
rm -rf dist

python3 setup.py sdist bdist_wheel
twine upload --repository testpypi dist/*
pip install --index-url https://test.pypi.org/simple/ your-package-name

# 测试发布
twine upload --config-file ~/.pypirc --repository testpypi dist/*
pip install --index-url https://test.pypi.org/simple/ lzl-pytools

# 正式发布
twine upload --config-file ~/.pypirc dist/*
https://pypi.org/project/lzl-pytools/0.1.0/
pip install lzl-pytools --index-url https://pypi.org/simple/
```
