change api name

This commit is contained in:
hongtao 2015-03-03 10:17:32 +08:00
parent 9f3cdd657a
commit c2dbb750d6

View File

@ -2,12 +2,12 @@ from distutils.core import setup
setup(
name = 'googlefinance',
packages = ['googlefinance'], # this must be the same as the name above
version = '0.1',
version = '0.2',
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
download_url = 'https://github.com/hongtaocai/googlefinance/tarball/0.1', # I'll explain this in a second
download_url = 'https://github.com/hongtaocai/googlefinance/tarball/0.2', # I'll explain this in a second
keywords = ['googlefinance', 'stock', 'price' , 'finance', 'google'], # arbitrary keywords
classifiers = [],
)