forked from youfou/wxpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·50 lines (45 loc) · 1.2 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#!/usr/bin/env python3
# coding: utf-8
import re
from setuptools import find_packages, setup
with open('wxpy/__init__.py', encoding='utf-8') as fp:
version = re.search(r"__version__\s*=\s*'([\w\-.]+)'", fp.read()).group(1)
with open('README.rst', encoding='utf-8') as fp:
readme = fp.read()
setup(
name='wxpy',
version=version,
packages=find_packages(),
package_data={
'': ['*.rst'],
},
include_package_data=True,
entry_points={
'console_scripts': [
'wxpy = wxpy.utils:shell_entry'
]
},
install_requires=[
'itchat>=1.2.30',
'requests',
],
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 :: 3',
'Operating System :: OS Independent',
'Topic :: Communications :: Chat',
'Topic :: Utilities',
]
)