2017-03-19 20:57:51 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
2020-06-18 02:00:30 +02:00
|
|
|
from pathlib import Path
|
2017-03-19 20:57:51 +00:00
|
|
|
|
|
|
|
|
try:
|
|
|
|
|
from setuptools import setup
|
|
|
|
|
except ImportError:
|
|
|
|
|
from distutils.core import setup
|
|
|
|
|
|
2020-06-18 02:00:30 +02:00
|
|
|
this_directory = Path(__file__).parent
|
2020-06-21 13:14:53 +02:00
|
|
|
long_description = (this_directory / 'README.md').read_text(encoding='utf-8')
|
2019-11-10 19:13:49 +00:00
|
|
|
|
2017-03-19 20:57:51 +00:00
|
|
|
setup(
|
|
|
|
|
name='cibuildwheel',
|
2020-12-21 13:20:45 +00:00
|
|
|
version='1.7.2',
|
2020-10-31 10:06:14 +01:00
|
|
|
install_requires=['bashlex!=0.13', 'toml', 'certifi'],
|
2017-03-19 20:57:51 +00:00
|
|
|
description="Build Python wheels on CI with minimal configuration.",
|
2019-11-10 19:13:49 +00:00
|
|
|
long_description=long_description,
|
|
|
|
|
long_description_content_type='text/markdown',
|
2017-03-19 20:57:51 +00:00
|
|
|
author="Joe Rickerby",
|
|
|
|
|
author_email='joerick@mac.com',
|
|
|
|
|
url='https://github.com/joerick/cibuildwheel',
|
2020-09-09 09:17:42 +01:00
|
|
|
project_urls={
|
|
|
|
|
'Changelog': 'https://github.com/joerick/cibuildwheel#changelog',
|
|
|
|
|
'Documentation': 'https://cibuildwheel.readthedocs.io/',
|
|
|
|
|
},
|
2019-11-12 23:51:27 +00:00
|
|
|
packages=['cibuildwheel', ],
|
2017-03-19 20:57:51 +00:00
|
|
|
license="BSD",
|
|
|
|
|
zip_safe=False,
|
2019-05-28 19:16:20 +01:00
|
|
|
package_data={
|
|
|
|
|
'cibuildwheel': ['resources/*'],
|
|
|
|
|
},
|
2019-11-09 12:38:38 +01:00
|
|
|
# Supported python versions
|
2020-04-10 02:00:29 +02:00
|
|
|
python_requires='>=3.6',
|
2017-03-19 20:57:51 +00:00
|
|
|
keywords='ci wheel packaging pypi travis appveyor macos linux windows',
|
|
|
|
|
classifiers=[
|
|
|
|
|
'Intended Audience :: Developers',
|
|
|
|
|
'Natural Language :: English',
|
|
|
|
|
'Programming Language :: Python :: 3',
|
2019-11-10 19:13:49 +00:00
|
|
|
'Development Status :: 5 - Production/Stable',
|
2017-03-19 20:57:51 +00:00
|
|
|
'License :: OSI Approved :: BSD License',
|
|
|
|
|
'Programming Language :: Python :: Implementation :: CPython',
|
|
|
|
|
'Topic :: Software Development :: Build Tools',
|
|
|
|
|
],
|
|
|
|
|
entry_points={
|
|
|
|
|
'console_scripts': [
|
|
|
|
|
'cibuildwheel = cibuildwheel.__main__:main',
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
)
|