Metadata-Version: 2.4
Name: async_regigen
Version: 0.1.1
Summary: A async utility package for generating coordinates of rotated geometric shapes.
Author-email: "houqi.li" <lihouqi007@gmail.com>
License: MIT
Keywords: geometry,rotation,rectangle,util
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Scientific/Engineering :: Mathematics
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: shapely>=2.0.0
Dynamic: license-file

rotation_utils_package/
├── rotation_utils/        # 实际的 Python 模块
│   ├── __init__.py        # 导入类和函数
│   └── geometry.py        # 包含核心代码的模块
├── pyproject.toml         # 配置项目元数据和构建系统
├── README.md              # 项目描述文件
└── LICENSE                # 许可证文件



在pyproject.toml同级执行
pip install build
python -m build  # build失败，使用下面指定源后再pip
# 确保在运行构建命令的同一行或之前设置了环境变量
PIP_INDEX_URL="https://pypi.tuna.tsinghua.edu.cn/simple" python -m build



# 如果是本地文件，使用本地路径
pip install dist/rotation_utils_geometry-0.1.0-py3-none-any.whl
