Embed readme in project for PyPI

This commit is contained in:
Joe Rickerby
2019-11-10 19:13:49 +00:00
parent 1a9c6a5f66
commit a3e9b7b8ec
+8 -2
View File
@@ -1,17 +1,23 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os, io
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
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()
setup(
name='cibuildwheel',
version='1.0.0',
install_requires=['bashlex!=0.13'],
description="Build Python wheels on CI with minimal configuration.",
long_description='For readme please see http://github.com/joerick/cibuildwheel',
long_description=long_description,
long_description_content_type='text/markdown',
author="Joe Rickerby",
author_email='joerick@mac.com',
url='https://github.com/joerick/cibuildwheel',
@@ -29,7 +35,7 @@ setup(
'Natural Language :: English',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Development Status :: 4 - Beta',
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Software Development :: Build Tools',