From e9555786dff4b3afcd4cf17a7b3959ba4bea5085 Mon Sep 17 00:00:00 2001 From: shaunsephton Date: Wed, 4 Apr 2012 11:56:32 +0200 Subject: [PATCH] use setuptools, version bump to 0.1.1, install dependencies --- setup.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) 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', + ] )