1 Star 0 Fork 0

zzz/wxpy

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.py 1.54 KB
一键复制 编辑 原始数据 按行查看 历史
zzz 提交于 2019-08-14 11:03 . first commit
# 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',
]
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/springzzj/wxpy.git
git@gitee.com:springzzj/wxpy.git
springzzj
wxpy
wxpy
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385