-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathsetup.py
58 lines (49 loc) · 1.94 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Copyright 2011 andelf <andelf@gmail.com>
# Time-stamp: <2011-06-06 16:08:30 andelf>
#from distutils.core import setup
from setuptools import setup, find_packages
import os, sys
lib_path = os.path.join(os.path.dirname(__file__))
sys.path.insert(0, lib_path)
from qqweibo import version
setup(name = "pyqqweibo",
version = version,
author = "andelf",
author_email = "andelf@gmail.com",
description = ("QQ weibo API SDK for python"),
license = "MIT",
keywords= "qq weibo library tencent microblog",
url="http://github.com/andelf/pyqqweibo",
packages = ['qqweibo'],
long_description = """
QQ weibo is a microblog service that is popular among Chinese.
This is the SDK tools for QQ weibo, written by @andelf.
* fix the bad offical api names and arangement.
* With model parser support, cache support.
* Under active development.
* Supports Python 2.6 - 2.7 and 3.1 - 3.2.
* Document & samples included.
* MIT license.
NOTE: this is a thrid party SDK, use at your risk.
""",
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Natural Language :: Chinese (Simplified)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.0",
"Programming Language :: Python :: 3.1",
"Programming Language :: Python :: 3.2",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content :: CGI Tools/Libraries",
"Topic :: Utilities"
],
zip_safe = True)