forked from pandolia/qqbot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (23 loc) · 800 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
26
# -*- coding: utf-8 -*-
from setuptools import setup
version = 'v2.3.10'
setup(
name = 'qqbot',
version = version,
packages = ['qqbot', 'qqbot.qcontactdb', 'qqbot.plugins'],
entry_points = {
'console_scripts': [
'qqbot = qqbot:RunBot',
'qq = qqbot:QTerm'
]
},
install_requires = ['requests', 'certifi', 'apscheduler'],
description = "QQBot: A conversation robot base on Tencent's SmartQQ",
author = 'pandolia' ,
author_email = '[email protected]',
url = 'https://github.com/pandolia/qqbot/',
download_url = 'https://github.com/pandolia/qqbot/archive/%s.tar.gz' % version,
keywords = ['QQBot', 'conversation robot', 'tencent', 'qq',
'web', 'network', 'python', 'http'],
classifiers = [],
)