Run autopep8 and add install_requires

This commit is contained in:
Giuseppe Valente 2017-03-20 12:34:44 -07:00
parent 3c89002581
commit 86ea27f027

View File

@ -1,23 +1,25 @@
from distutils.core import setup from distutils.core import setup
setup( setup(
name = 'googlefinance', name='googlefinance',
packages = ['googlefinance'], # this must be the same as the name above packages=['googlefinance'], # this must be the same as the name above
version = '0.7', version='0.7',
description = 'Python module to get real-time (no delay) stock data from Google Finance API', description='Python module to get real-time (no delay) stock data from Google Finance API',
author = 'Hongtao Cai', author='Hongtao Cai',
author_email = 'caiht.ht@gmail.com', author_email='caiht.ht@gmail.com',
url = 'https://github.com/hongtaocai/googlefinance', # use the URL to the github repo 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 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 keywords=['googlefinance', 'stock', 'price', 'finance',
classifiers = [ 'google', 'real-time'], # arbitrary keywords
'License :: OSI Approved :: MIT License', classifiers=[
'Operating System :: OS Independent', 'License :: OSI Approved :: MIT License',
'Programming Language :: Python', 'Operating System :: OS Independent',
'Programming Language :: Python :: 2', 'Programming Language :: Python',
'Programming Language :: Python :: 2.6', 'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 3', 'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.3',
], 'Programming Language :: Python :: 3.4',
],
install_requires=['demjson']
) )