-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (24 loc) · 887 Bytes
/
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
from distutils.core import setup
import sys
import weixin
kw = dict(
name = 'weixinpy',
version = weixin.__version__,
description = 'Python client SDK for Micro Message Public Platform API',
long_description = open('README', 'r').read(),
author = 'Liang Cha',
author_email = '[email protected]',
url = 'https://github.com/kun945/weixinpy',
download_url = 'https://github.com/kun945/weixinpy',
py_modules = ['weixin'],
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet',
'Topic :: Software Development :: Libraries :: Python Modules',
])
setup(**kw)