Twython 1.3, OAuth support is now finally included and working. Ships with an example Django application to get people started with OAuth, entire library is refactored to not be a royal clusterfsck. Enjoy.

This commit is contained in:
Ryan McGrath 2010-10-16 23:37:47 -04:00
parent 7ccf8a2baf
commit eb5541e433
22 changed files with 2400 additions and 4492 deletions

View file

@ -4,13 +4,10 @@ import sys, os
from setuptools import setup
from setuptools import find_packages
__author__ = 'Ryan McGrath <ryan@venodesigns.net>'
__version__ = '1.2.1'
__version__ = '1.3'
setup(
# Basic package information.
name = 'twython',
version = __version__,
@ -20,7 +17,7 @@ setup(
include_package_data = True,
# Package dependencies.
install_requires = ['simplejson'],
install_requires = ['simplejson', 'oauth2'],
# Metadata for PyPI.
author = 'Ryan McGrath',
@ -38,5 +35,4 @@ setup(
'Topic :: Communications :: Chat',
'Topic :: Internet'
]
)