From eaefff371c0a3368707206c3a131801b7c76bbcb Mon Sep 17 00:00:00 2001 From: Josh Roesslein Date: Sat, 7 Nov 2009 14:26:51 -0600 Subject: [PATCH] Move install instructions out of readme and into install file. --- CHANGES => CHANGELOG | 0 INSTALL | 24 ++++++++++++++++++++++++ README | 8 +------- 3 files changed, 25 insertions(+), 7 deletions(-) rename CHANGES => CHANGELOG (100%) create mode 100644 INSTALL diff --git a/CHANGES b/CHANGELOG similarity index 100% rename from CHANGES rename to CHANGELOG diff --git a/INSTALL b/INSTALL new file mode 100644 index 0000000..566627a --- /dev/null +++ b/INSTALL @@ -0,0 +1,24 @@ +easy_install +------------ +easy_install tweepy + + +setuptools - from Git repository +-------------------------------- +> git clone git://github.com/joshthecoder/tweepy.git +> cd tweepy +> python setup.py install (run as admin/root) + +setuptools - from source archive +-------------------------------- +Download source archive here: + http://pypi.python.org/packages/source/t/tweepy/tweepy-1.2.tar.gz +Extract archive +> cd tweepy-1.2 +> python setup.py install (run as admin/root) + +bundle with your application +---------------------------- +You may also download a source archive or checkout via Git. +Then just include the tweepy package folder inside your application's source folder. + diff --git a/README b/README index 5e0b61f..b5b1c78 100644 --- a/README +++ b/README @@ -27,13 +27,7 @@ Bug tracker: http://github.com/joshthecoder/tweepy/issues Need a programmer? Feel free to contact me directly at jroesslein at gmail.com -Installing: - Using easy_install: - easy_install tweepy - You may also install from the repository: - git clone git://github.com/joshthecoder/tweepy.git - cd tweepy - python setup.py install +Installing: See INSTALL Souce code: Library: http://github.com/joshthecoder/tweepy -- 2.25.1