mirror of
https://github.com/hongtaocai/googlefinance.git
synced 2024-11-04 16:29:23 -06:00
14 lines
644 B
Python
14 lines
644 B
Python
from distutils.core import setup
|
|
setup(
|
|
name = 'googlefinance',
|
|
packages = ['googlefinance'], # this must be the same as the name above
|
|
version = '0.5',
|
|
description = 'Python module to get real-time (no delay) 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.4', # I'll explain this in a second
|
|
keywords = ['googlefinance', 'stock', 'price' , 'finance', 'google', 'real-time'], # arbitrary keywords
|
|
classifiers = [],
|
|
)
|