Metadata-Version: 2.4
Name: lucaswangtool
Version: 0.0.1
Summary: 一个演示用数学运算库
Home-page: https://github.com/lucaswangdev/lucaswangtool
Author: lucaswangdev
Author-email: lucaswang.dev@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# lucaswangtool

This is a demonstration math operations library.


# 在项目根目录执行
python -m venv .venv  # 创建名为 .venv 的虚拟环境

# Linux/macOS
source .venv/bin/activate

pip install build

pip install -e .  # 会自动读取 setup.py/setup.cfg 的配置

# Windows
.\.venv\Scripts\activate

# 打包
rm -rf dist/ build/ 
python -m build
twine check dist/* 
# 上传到 PyPI（使用默认配置）
twine upload dist/*   

## Installation
```bash
pip install lucaswangtool
