Metadata-Version: 2.1
Name: cibuildwheel-cn
Version: 2.16.2.1
Summary: Build Python wheels on CI with minimal configuration.
Home-page: https://github.com/Jedore/cibuildwheel-cn
Author: Jedore
Author-email: jedorefight@gmail.com
License: BSD-3-Clause
Project-URL: Changelog, https://github.com/Jedore/cibuildwheel-cn
Project-URL: Documentation, https://cibuildwheel.readthedocs.io/
Keywords: ci,wheel,packaging,pypi,travis,appveyor,macos,linux,windows
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Topic :: Software Development :: Build Tools
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: bashlex !=0.13
Requires-Dist: bracex
Requires-Dist: certifi
Requires-Dist: filelock
Requires-Dist: packaging >=20.9
Requires-Dist: platformdirs
Requires-Dist: tomli ; python_version < "3.11"
Requires-Dist: typing-extensions >=4.1.0 ; python_version < "3.11"
Provides-Extra: bin
Requires-Dist: click ; extra == 'bin'
Requires-Dist: pip-tools ; extra == 'bin'
Requires-Dist: pygithub ; extra == 'bin'
Requires-Dist: pyyaml ; extra == 'bin'
Requires-Dist: requests ; extra == 'bin'
Requires-Dist: rich >=9.6 ; extra == 'bin'
Requires-Dist: packaging >=21.0 ; extra == 'bin'
Provides-Extra: dev
Requires-Dist: jinja2 ; extra == 'dev'
Requires-Dist: pytest >=6 ; extra == 'dev'
Requires-Dist: pytest-timeout ; extra == 'dev'
Requires-Dist: pytest-xdist ; extra == 'dev'
Requires-Dist: build ; extra == 'dev'
Requires-Dist: tomli-w ; extra == 'dev'
Requires-Dist: validate-pyproject ; extra == 'dev'
Requires-Dist: click ; extra == 'dev'
Requires-Dist: pip-tools ; extra == 'dev'
Requires-Dist: pygithub ; extra == 'dev'
Requires-Dist: pyyaml ; extra == 'dev'
Requires-Dist: requests ; extra == 'dev'
Requires-Dist: rich >=9.6 ; extra == 'dev'
Requires-Dist: packaging >=21.0 ; extra == 'dev'
Provides-Extra: docs
Requires-Dist: mkdocs-include-markdown-plugin ==2.8.0 ; extra == 'docs'
Requires-Dist: mkdocs ==1.3.1 ; extra == 'docs'
Requires-Dist: jinja2 >=3.1.2 ; extra == 'docs'
Requires-Dist: pymdown-extensions ; extra == 'docs'
Requires-Dist: mkdocs-macros-plugin ; extra == 'docs'
Provides-Extra: test
Requires-Dist: jinja2 ; extra == 'test'
Requires-Dist: pytest >=6 ; extra == 'test'
Requires-Dist: pytest-timeout ; extra == 'test'
Requires-Dist: pytest-xdist ; extra == 'test'
Requires-Dist: build ; extra == 'test'
Requires-Dist: tomli-w ; extra == 'test'
Requires-Dist: validate-pyproject ; extra == 'test'

cibuildwheel-cn
============

[![PyPI - Python Version](https://badgen.net/badge/pypi/v2.16.2.1/blue)](https://pypi.org/project/cibuildwhell-cn)

为什么有这个项目
-----------

本项目完全参考 [cibuildwheel](https://github.com/pypa/cibuildwheel), 这是一个比较全面的`Python`库构建工具。

在使用`cibuildwheel`的过程中发现需要下载 Python安装包 以及 docker镜像 等其他资源，
这些资源默认都是从国外网站下载，在国内使用 `cibuildwheel` 构建时， 由于种种原因，
资源下载速度非常慢，导致构建体验不太友好。 因此有了 `cibuildwheel-cn`, 加速国内构建体验。
功能和`cibuildwheel`保持一致。

如何使用
------------

**不能和`cibuildwheel`同时安装，否则会出现问题。**

```bash
pip install cibuildwheel-cn
```

同`cibuildwheel`使用方法一样，参考 [cibuildwheel文档](https://cibuildwheel.readthedocs.io/en/v2.16.2/),

[cibuildwheel LICENSE](CIBUILDWHEEL_LICENSE)
