-
Notifications
You must be signed in to change notification settings - Fork 230
/
setup.py
25 lines (21 loc) · 872 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
#!/usr/bin/env python
from io import open
from setuptools import setup, find_packages
with open("README.md", "r", encoding='utf-8') as fh:
long_description = fh.read()
with open('requirements.txt') as f:
requirements = [l for l in f.read().splitlines() if l]
setup(name="python-weixin",
version="0.5.0",
description="Python Weixin API client support wechat-app",
long_description=long_description,
long_description_content_type="text/markdown",
license="BSD",
install_requires=requirements,
author="gusibi",
author_email="[email protected]",
url="https://github.com/gusibi/python-weixin",
download_url="https://github.com/gusibi/python-weixin/archive/master.zip",
packages=find_packages(),
keywords=["python-weixin", "weixin", "wechat", "sdk", "weapp", "wxapp"],
zip_safe=True)