2017-03-19 20:57:51 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
# -*- coding: utf-8 -*-
|
2019-11-10 19:13:49 +00:00
|
|
|
import os, io
|
2017-03-19 20:57:51 +00:00
|
|
|
|
|
|
|
|
try:
|
|
|
|
|
from setuptools import setup
|
|
|
|
|
except ImportError:
|
|
|
|
|
from distutils.core import setup
|
|
|
|
|
|
2019-11-10 19:13:49 +00:00
|
|
|
this_directory = os.path.dirname(__file__)
|
|
|
|
|
with io.open(os.path.join(this_directory, 'README.md'), encoding='utf-8') as f:
|
|
|
|
|
long_description = f.read()
|
|
|
|
|
|
2017-03-19 20:57:51 +00:00
|
|
|
setup(
|
|
|
|
|
name='cibuildwheel',
|
2019-12-07 14:58:10 +00:00
|
|
|
version='1.1.0',
|
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.",
|
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',
|
|
|
|
|
packages=['cibuildwheel',],
|
|
|
|
|
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-02-03 17:37:35 +01:00
|
|
|
python_requires='>=3.5',
|
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',
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
)
|