-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
48 lines (37 loc) · 1.57 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
def content(name):
with open(path.join(here, name), encoding='utf-8') as f:
desc = f.read()
return desc
__author__ = 'tianshl'
__date__ = '2017/01/26'
setup(
name='wxReply', # 名称
version='1.2.6', # 版本号
description='wxReply', # 简单描述
long_description=content('README.rst'), # 详细描述
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
keywords='wechat robot weixin wxReply', # 关键字
author='tianshl', # 作者
author_email='xiyuan91@126.com', # 邮箱
url='https://github.com/tianshl/wxReply', # 包含包的项目地址
license='MIT', # 授权方式
packages=find_packages(), # 包列表
install_requires=['requests', 'itchat'], # 依赖
extras_require={},
)