googlefinance/setup.py

14 lines
610 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 01:58:29 -06:00
version = '0.3',
2015-03-02 08:34:02 -06:00
description = 'Python module to get stock data from Google Finance API',
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 01:58:29 -06:00
download_url = 'https://github.com/hongtaocai/googlefinance/tarball/0.3', # I'll explain this in a second
2015-03-02 08:34:02 -06:00
keywords = ['googlefinance', 'stock', 'price' , 'finance', 'google'], # arbitrary keywords
classifiers = [],
)