代码拉取完成,页面将自动刷新
# coding: utf-8
# from __future__ import unicode_literals
import re
import codecs
from setuptools import find_packages, setup
with codecs.open('wxpy/__init__.py', encoding='utf-8') as fp:
version = re.search(r"__version__\s*=\s*'([\w\-.]+)'", fp.read()).group(1)
with codecs.open('README.rst', encoding='utf-8') as fp:
readme = fp.read()
setup(
name='wxpy',
version=version,
packages=find_packages(),
include_package_data=True,
entry_points={
'console_scripts': [
'wxpy = wxpy.utils:shell_entry'
]
},
install_requires=[
'itchat',
'requests',
'future',
],
dependency_links=[
'git+https://github.com/dongweiming/itchat.git@signals#egg=itchat-9999999',
],
tests_require=[
'pytest',
],
url='https://github.com/youfou/wxpy',
license='MIT',
author='Youfou',
author_email='youfou@qq.com',
description='微信机器人 / 可能是最优雅的微信个人号 API',
long_description=readme,
keywords=[
'微信',
'WeChat',
'API'
],
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Operating System :: OS Independent',
'Topic :: Communications :: Chat',
'Topic :: Utilities',
]
)
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。