-
Notifications
You must be signed in to change notification settings - Fork 455
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (20 loc) · 760 Bytes
/
setup.py
File metadata and controls
25 lines (20 loc) · 760 Bytes
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
# -*- 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='doraemonext@gmail.com',
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',
)