forked from lxyu/weibo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (25 loc) · 768 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
setup(
name='weibo',
version='0.2.2',
description='Python sina weibo sdk',
author='Lx Yu',
author_email='[email protected]',
py_modules=['weibo', ],
url='http://lxyu.github.io/weibo/',
license="BSD",
long_description=open('README.rst').read(),
install_requires=[
"requests>=2.4.0",
],
classifiers=[
"Topic :: Software Development",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
])