diff --git a/setup.py b/setup.py index a7f499b..5e77511 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ -from distutils.core import setup +from setuptools import setup setup(name='twittytwister', - version='0.1', + version='0.1.1', description='Twitter client for Twisted Python', author='Dustin Sallings', author_email='dustin@spy.net', @@ -9,4 +9,9 @@ license='MIT', platforms='any', packages=['twittytwister'], + install_requires=[ + 'oauth', + 'simplejson', + 'Twisted', + ] )