-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (24 loc) · 710 Bytes
/
setup.py
File metadata and controls
25 lines (24 loc) · 710 Bytes
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
from setuptools import setup
setup(
name = 'pyqq',
version = '0.0.5',
description = "nsfocus qq client library",
long_description="""
python qq client library
example:
from pyqq import QQ
uid = YOUR QQ NUMBER
pwd = YOUR QQ PASSWORD
qq = QQ(uid,pwd)
qq.login()
while True:
qq.poll()
""",
license = "gpl3",
author = "kula",
author_email = "kulasama@gmail.com",
url='http://github.com/kulasama/pyqq',
tests_require = ['nose'],
platforms = 'any',
packages = ['pyqq',],
)