Required oauth_verifier

This commit is contained in:
David Avsajanishvili 2013-04-11 00:09:53 +01:00
parent 3ffebcc57f
commit ab8bb4ac36
2 changed files with 18 additions and 14 deletions

View file

@ -1,6 +1,5 @@
#!/usr/bin/python
import sys, os
from setuptools import setup
from setuptools import find_packages
@ -17,7 +16,11 @@ setup(
include_package_data = True,
# Package dependencies.
install_requires = ['simplejson', 'oauth2', 'httplib2', 'twython', 'django'],
install_requires = ['simplejson',
'oauth2',
'httplib2',
'twython>=2.7.2',
'django'],
provides = ['twython_django_oauth'],
# Metadata for PyPI.
@ -36,4 +39,4 @@ setup(
'Topic :: Communications :: Chat',
'Topic :: Internet'
]
)
)