From 2e25cec97ccd112cec0b2c6792bace04dd7795b6 Mon Sep 17 00:00:00 2001 From: innes213 Date: Thu, 5 Feb 2015 22:43:21 -0800 Subject: [PATCH] Final touch ups for release - add install directions to read me - remove old test - update version --- README.md | 7 ++++++- setup.py | 6 +++--- test_quotedata.py | 18 ------------------ 3 files changed, 9 insertions(+), 22 deletions(-) delete mode 100644 test_quotedata.py diff --git a/README.md b/README.md index 6924c2c..c8ab38b 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,12 @@ API. These tools are designed for applications which need to grab large numbers of quotes. Additionally, data, by default, is properly typecast for easy analysis. It is designed for flexibility and to minimize server queries. -For example: + +## Installation + +pip install pyhoofinance + +## Example ```python #!/usr/bin/env python diff --git a/setup.py b/setup.py index d36817c..e861660 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ # # pyhoofinance - setup.py # -# Copyright (c) 2014, Rob Innes Hislop +# Copyright (c) 2014-2015, Rob Innes Hislop # email:robinneshislop__AT__gmail.com # # This library is distributed under the terms of the @@ -11,12 +11,12 @@ from setuptools import setup, find_packages -__version__ = '0.1.1' +__version__ = '0.1.2' setup( name='pyhoofinance', version=__version__, author='Rob Innes Hislop', - author_email='robinneshislop@gmail.com', + author_email='robinneshislop_at_gmail.com', packages=find_packages(), license='GNU LGPL License', description='Set of functions for retreiving equity data from Yahoo finance', diff --git a/test_quotedata.py b/test_quotedata.py deleted file mode 100644 index db31978..0000000 --- a/test_quotedata.py +++ /dev/null @@ -1,18 +0,0 @@ -''' -Created on Jul 17, 2014 - -@author: innes213 -''' -import unittest - - -class QueryYahooTest(unittest.TestCase): - - - def test_get_(self): - pass - - -if __name__ == "__main__": - #import sys;sys.argv = ['', 'Test.test_get_quotes'] - unittest.main() \ No newline at end of file