代码拉取完成,页面将自动刷新
#!/usr/bin/env python
# coding=utf-8
from setuptools import setup
from wheel.bdist_wheel import bdist_wheel as _bdist_wheel
class bdist_wheel(_bdist_wheel):
def finalize_options(self):
_bdist_wheel.finalize_options(self)
self.root_is_pure = False
def get_tag(self):
python, abi, plat = _bdist_wheel.get_tag(self)
# We don't contain any python source
python, abi = 'py2.py3', 'none'
return python, abi, plat
version = '1.0.4'
setup(
name='kindle_maker',
version=version,
author='jachinlin',
author_email='linjx1000@gmail.com',
url='https://github.com/jachinlin/kindle_maker',
description='a tool make kindle mobi ebook',
license='MIT',
keywords='kindle ebook mobi',
packages=['kindle_maker'],
package_data={'kindle_maker': [
'templates/*',
'bin/linux/kindlegen',
'bin/mac/kindlegen'
]},
install_requires=[
'Jinja2'
],
entry_points={
'console_scripts': [
'make_mobi=kindle_maker:make_mobi_command',
],
},
cmdclass={'bdist_wheel': bdist_wheel}
)
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。