# -*- coding: utf-8 -*- # !/usr/bin/env python from setuptools import setup, find_packages from io import open setup( name='wechat-sdk', version='0.6.4', keywords=('wechat', 'sdk', 'wechat sdk'), description=u'å¾®ä¿¡å ¬ä¼å¹³å°Pythonå¼åå ', long_description=open("README.rst", encoding="utf-8").read(), license='BSD License', url='https://github.com/wechat-python-sdk/wechat-python-sdk', author='doraemonext', author_email='[email protected]', packages=find_packages(), include_package_data=True, install_requires=list(map(lambda x: x.replace('==', '>=') and x.rstrip('\n'), open("requirements.txt", encoding="utf-8").readlines())), tests_require=['nose', 'httmock'], test_suite='tests', )