Files
cibuildwheel/setup.py
T

50 lines
1.6 KiB
Python
Raw Normal View History

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
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',
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,
package_data={
'cibuildwheel': ['resources/*'],
},
2019-11-09 12:38:38 +01:00
# Supported python versions
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',
],
},
)