-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathsetup.py
More file actions
71 lines (55 loc) · 1.37 KB
/
setup.py
File metadata and controls
71 lines (55 loc) · 1.37 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
#!/usr/bin/python3
# -*- coding: utf-8 -*-
"""
@author: sharpdeep
@file:setup.py
@time: 2016-02-24 22:15
"""
import codecs
import os
import sys
try:
from setuptools import setup
except:
from distutils.core import setup
"""
打包的用的setup必须引入,
"""
def read(fname):
return codecs.open(os.path.join(os.path.dirname(__file__), fname)).read()
NAME = "wxrobot"
PACKAGES = ["WxRobot", ]
DESCRIPTION = "a python wechat robot framework for personal account"
LONG_DESCRIPTION = read("README.rst")
KEYWORDS = "wechat weixin robot wxrobot"
AUTHOR = "sharpdeep"
AUTHOR_EMAIL = "cairuishen@gmail.com"
URL = "https://github.com/sharpdeep/WxRobot"
VERSION = "0.13"
LICENSE = "MIT"
setup(
name=NAME,
version=VERSION,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
install_requires=['qrcode','requests','beautifulsoup4'],
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.4',
'Intended Audience :: Developers',
'Operating System :: MacOS',
'Operating System :: POSIX',
'Operating System :: POSIX :: Linux',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities',
],
keywords=KEYWORDS,
author=AUTHOR,
author_email=AUTHOR_EMAIL,
url=URL,
license=LICENSE,
packages=PACKAGES,
include_package_data=True,
zip_safe=True,
)