forked from michaelliao/sinaweibopy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (24 loc) · 887 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
27
from distutils.core import setup
import sys
import weibo
kw = dict(
name = 'sinaweibopy',
version = weibo.__version__,
description = 'Sina Weibo OAuth 2 API Python SDK',
long_description = open('README', 'r').read(),
author = 'Michael Liao',
author_email = 'askxuefeng@gmail.com',
url = 'https://github.com/michaelliao/sinaweibopy',
download_url = 'https://github.com/michaelliao/sinaweibopy',
py_modules = ['weibo'],
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet',
'Topic :: Software Development :: Libraries :: Python Modules',
])
setup(**kw)