2015-03-02 22:34:02 +08:00
|
|
|
from distutils.core import setup
|
|
|
|
|
setup(
|
|
|
|
|
name = 'googlefinance',
|
|
|
|
|
packages = ['googlefinance'], # this must be the same as the name above
|
2015-04-16 14:26:13 -07:00
|
|
|
version = '0.7',
|
2015-03-03 16:25:54 +08:00
|
|
|
description = 'Python module to get real-time (no delay) stock data from Google Finance API',
|
2015-03-02 22:34:02 +08: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 16:25:54 +08:00
|
|
|
download_url = 'https://github.com/hongtaocai/googlefinance/tarball/0.4', # I'll explain this in a second
|
2015-03-04 11:25:26 +08:00
|
|
|
keywords = ['googlefinance', 'stock', 'price' , 'finance', 'google', 'real-time'], # arbitrary keywords
|
2015-04-16 13:59:26 -07:00
|
|
|
classifiers = [
|
|
|
|
|
'License :: OSI Approved :: MIT License',
|
|
|
|
|
'Operating System :: OS Independent',
|
|
|
|
|
'Programming Language :: Python',
|
|
|
|
|
'Programming Language :: Python :: 2',
|
|
|
|
|
'Programming Language :: Python :: 2.6',
|
|
|
|
|
'Programming Language :: Python :: 2.7',
|
|
|
|
|
'Programming Language :: Python :: 3',
|
|
|
|
|
'Programming Language :: Python :: 3.3',
|
|
|
|
|
'Programming Language :: Python :: 3.4',
|
|
|
|
|
],
|
2015-03-02 22:34:02 +08:00
|
|
|
)
|