googlefinance/setup.py

24 lines
1.0 KiB
Python
Raw Permalink 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-04-16 16:26:13 -05:00
version = '0.7',
2015-03-03 02:25:54 -06:00
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-03 21:25:26 -06:00
keywords = ['googlefinance', 'stock', 'price' , 'finance', 'google', 'real-time'], # arbitrary keywords
2015-04-16 15:59:26 -05: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 08:34:02 -06:00
)