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