-
Notifications
You must be signed in to change notification settings - Fork 93
/
Copy pathsetup.py
64 lines (48 loc) · 1.32 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# coding: utf-8
# from __future__ import unicode_literals
import codecs
import os
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
def read(fname):
return codecs.open(os.path.join(os.path.dirname(__file__), fname), encoding='utf-8').read()
NAME = "wechat_sender"
PACKAGES = ["wechat_sender", ]
DESCRIPTION = "随时随地发送消息到微信"
LONG_DESCRIPTION = read("README.rst")
KEYWORDS = ["Wechat", "微信", "监控"]
AUTHOR = "RaPoSpectre"
AUTHOR_EMAIL = "rapospectre@gmail.com"
URL = "https://github.com/bluedazzle/wechat_sender"
VERSION = "0.1.4"
LICENSE = "BSD"
setup(
name=NAME,
version=VERSION,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
classifiers=[
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Operating System :: OS Independent',
'Topic :: Communications :: Chat',
'Topic :: Utilities',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6'
],
install_requires=[
'tornado',
'wxpy',
'psutil',
],
keywords=KEYWORDS,
author=AUTHOR,
author_email=AUTHOR_EMAIL,
url=URL,
license=LICENSE,
packages=PACKAGES,
include_package_data=True,
zip_safe=True,
)