2021-01-02 11:33:38 -05:00
|
|
|
[metadata]
|
|
|
|
|
name = cibuildwheel
|
2022-08-11 19:43:33 +01:00
|
|
|
version = 2.9.0
|
2021-01-02 11:33:38 -05:00
|
|
|
description = Build Python wheels on CI with minimal configuration.
|
|
|
|
|
long_description = file: README.md
|
|
|
|
|
long_description_content_type = text/markdown
|
2021-05-24 10:21:03 -04:00
|
|
|
url = https://github.com/pypa/cibuildwheel
|
2021-01-02 11:33:38 -05:00
|
|
|
author = Joe Rickerby
|
|
|
|
|
author_email = joerick@mac.com
|
2021-10-07 23:10:56 -04:00
|
|
|
license = BSD-2-Clause
|
2021-04-25 12:38:28 -04:00
|
|
|
license_file = LICENSE
|
2021-01-02 11:33:38 -05:00
|
|
|
classifiers =
|
2021-04-25 12:38:28 -04:00
|
|
|
Development Status :: 5 - Production/Stable
|
2021-01-02 11:33:38 -05:00
|
|
|
Intended Audience :: Developers
|
2021-04-25 12:38:28 -04:00
|
|
|
License :: OSI Approved :: BSD License
|
2021-01-02 11:33:38 -05:00
|
|
|
Natural Language :: English
|
|
|
|
|
Programming Language :: Python :: 3
|
2021-04-25 12:38:28 -04:00
|
|
|
Programming Language :: Python :: 3 :: Only
|
|
|
|
|
Programming Language :: Python :: 3.7
|
|
|
|
|
Programming Language :: Python :: 3.8
|
|
|
|
|
Programming Language :: Python :: 3.9
|
2021-10-07 23:10:56 -04:00
|
|
|
Programming Language :: Python :: 3.10
|
2021-01-02 11:33:38 -05:00
|
|
|
Programming Language :: Python :: Implementation :: CPython
|
|
|
|
|
Topic :: Software Development :: Build Tools
|
2021-04-25 12:38:28 -04:00
|
|
|
keywords = ci,wheel,packaging,pypi,travis,appveyor,macos,linux,windows
|
2021-01-02 11:33:38 -05:00
|
|
|
project_urls =
|
2021-05-24 10:21:03 -04:00
|
|
|
Changelog=https://github.com/pypa/cibuildwheel#changelog
|
2021-01-02 11:33:38 -05:00
|
|
|
Documentation=https://cibuildwheel.readthedocs.io/
|
|
|
|
|
|
|
|
|
|
[options]
|
|
|
|
|
packages = find:
|
|
|
|
|
install_requires =
|
|
|
|
|
bashlex!=0.13
|
2021-01-15 15:25:22 -05:00
|
|
|
bracex
|
2021-04-25 12:38:28 -04:00
|
|
|
certifi
|
2022-01-08 11:30:48 +01:00
|
|
|
filelock
|
2022-04-18 14:24:53 +02:00
|
|
|
packaging>=20.9
|
2022-01-08 11:30:48 +01:00
|
|
|
platformdirs
|
2022-04-15 21:00:57 -07:00
|
|
|
tomli;python_version < '3.11'
|
2021-11-09 22:15:07 -05:00
|
|
|
typing-extensions>=3.10.0.0;python_version < '3.8'
|
2022-07-14 12:47:01 +02:00
|
|
|
python_requires = >=3.7
|
2021-04-25 12:38:28 -04:00
|
|
|
include_package_data = True
|
|
|
|
|
zip_safe = False
|
|
|
|
|
|
2021-10-07 23:10:56 -04:00
|
|
|
[options.packages.find]
|
|
|
|
|
include =
|
|
|
|
|
cibuildwheel
|
|
|
|
|
|
2021-04-25 12:38:28 -04:00
|
|
|
[options.entry_points]
|
|
|
|
|
console_scripts =
|
|
|
|
|
cibuildwheel = cibuildwheel.__main__:main
|
2021-01-02 11:33:38 -05:00
|
|
|
|
|
|
|
|
[options.package_data]
|
|
|
|
|
cibuildwheel = resources/*
|
|
|
|
|
|
2019-11-12 23:51:27 +00:00
|
|
|
[flake8]
|
2022-07-03 20:00:00 +02:00
|
|
|
extend-ignore = E203,E501,B950,B023
|
|
|
|
|
extend-select = B9
|
2019-11-12 23:51:27 +00:00
|
|
|
application-import-names = cibuildwheel
|
2020-02-15 12:15:44 +00:00
|
|
|
exclude =
|
2021-04-25 12:38:28 -04:00
|
|
|
cibuildwheel/resources/,
|
|
|
|
|
dist/,
|
|
|
|
|
build/,
|
|
|
|
|
.git/,
|
|
|
|
|
env/,
|
|
|
|
|
env2/,
|
|
|
|
|
env??/,
|
|
|
|
|
.venv/,
|
|
|
|
|
site/
|