googlefinance/setup.py

14 lines
631 B
Python
Raw Normal View History

2015-03-02 08:34:02 -06:00
from distutils.core import setup
setup(
name = 'googlefinance',
packages = ['googlefinance'], # this must be the same as the name above
2015-03-03 02:25:54 -06:00
version = '0.4',
description = 'Python module to get real-time (no delay) stock data from Google Finance API',
2015-03-02 08:34:02 -06:00
author = 'Hongtao Cai',
author_email = 'caiht.ht@gmail.com',
url = 'https://github.com/hongtaocai/googlefinance', # use the URL to the github repo
2015-03-03 02:25:54 -06:00
download_url = 'https://github.com/hongtaocai/googlefinance/tarball/0.4', # I'll explain this in a second
2015-03-02 08:34:02 -06:00
keywords = ['googlefinance', 'stock', 'price' , 'finance', 'google'], # arbitrary keywords
classifiers = [],
)