2.1.0 release

* README.rst, kind of tried to clean up docs with more examples
* No longer need oauth2 lib 👍
This commit is contained in:
Michael Helmick 2012-05-16 11:59:47 -04:00
parent a4e3af1ad4
commit f2cd0d5284
4 changed files with 200 additions and 140 deletions

View file

@ -4,7 +4,7 @@ from setuptools import setup
from setuptools import find_packages
__author__ = 'Ryan McGrath <ryan@venodesigns.net>'
__version__ = '2.0.0'
__version__ = '2.1.0'
setup(
# Basic package information.
@ -16,7 +16,7 @@ setup(
include_package_data=True,
# Package dependencies.
install_requires=['simplejson', 'oauth2', 'requests'],
install_requires=['simplejson', 'requests'],
# Metadata for PyPI.
author='Ryan McGrath',
@ -25,7 +25,7 @@ setup(
url='http://github.com/ryanmcgrath/twython/tree/master',
keywords='twitter search api tweet twython',
description='An easy (and up to date) way to access Twitter data with Python.',
long_description=open('README.markdown').read(),
long_description=open('README.rst').read(),
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',