Files
cibuildwheel/setup.py
T

48 lines
1.4 KiB
Python
Raw Normal View History

2017-03-19 20:57:51 +00:00
# -*- coding: utf-8 -*-
2019-11-12 23:51:27 +00:00
import io
import os
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',
2020-03-12 19:53:34 +00:00
version='1.3.0',
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',
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
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',
],
},
)