2017-03-19 20:57:51 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
|
|
try:
|
|
|
|
|
from setuptools import setup
|
|
|
|
|
except ImportError:
|
|
|
|
|
from distutils.core import setup
|
|
|
|
|
|
|
|
|
|
setup(
|
|
|
|
|
name='cibuildwheel',
|
2019-05-28 19:17:28 +01:00
|
|
|
version='0.11.1',
|
2019-03-10 14:57:43 +01:00
|
|
|
install_requires=['bashlex!=0.13'],
|
2017-03-19 20:57:51 +00:00
|
|
|
description="Build Python wheels on CI with minimal configuration.",
|
|
|
|
|
long_description='For readme please see http://github.com/joerick/cibuildwheel',
|
|
|
|
|
author="Joe Rickerby",
|
|
|
|
|
author_email='joerick@mac.com',
|
|
|
|
|
url='https://github.com/joerick/cibuildwheel',
|
|
|
|
|
packages=['cibuildwheel',],
|
|
|
|
|
license="BSD",
|
|
|
|
|
zip_safe=False,
|
2019-05-28 19:16:20 +01:00
|
|
|
package_data={
|
|
|
|
|
'cibuildwheel': ['resources/*'],
|
|
|
|
|
},
|
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 :: 2',
|
|
|
|
|
'Programming Language :: Python :: 3',
|
|
|
|
|
'Development Status :: 4 - Beta',
|
|
|
|
|
'License :: OSI Approved :: BSD License',
|
|
|
|
|
'Programming Language :: Python :: Implementation :: CPython',
|
|
|
|
|
'Topic :: Software Development :: Build Tools',
|
|
|
|
|
],
|
|
|
|
|
entry_points={
|
|
|
|
|
'console_scripts': [
|
|
|
|
|
'cibuildwheel = cibuildwheel.__main__:main',
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
)
|