import oauth as oauth to avoid namespacing conflicts in builds; setup.py now properly includes all necessary modules, fixes build problems people reported

This commit is contained in:
Ryan McGrath 2009-12-17 03:27:23 -05:00
parent 850c1011d1
commit c40b6a6ebe
2 changed files with 2 additions and 2 deletions

View file

@ -9,7 +9,7 @@ __version__ = '1.0'
METADATA = dict( METADATA = dict(
name = "twython", name = "twython",
version = __version__, version = __version__,
py_modules = ['twython/core', 'twython/twyauth', 'twython/streaming', 'twython/oauth'], py_modules = ['twython/__init__', 'twython/core', 'twython/twyauth', 'twython/streaming', 'twython/oauth'],
author = 'Ryan McGrath', author = 'Ryan McGrath',
author_email = 'ryan@venodesigns.net', author_email = 'ryan@venodesigns.net',
description = 'An easy (and up to date) way to access Twitter data with Python.', description = 'An easy (and up to date) way to access Twitter data with Python.',

View file

@ -13,7 +13,7 @@ from urlparse import urlparse
from urllib2 import HTTPError from urllib2 import HTTPError
try: try:
import oauth as oauthlib import oauth
except ImportError: except ImportError:
pass pass