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

@ -8,7 +8,8 @@ setup(
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',
'google', 'real-time'], # arbitrary keywords
classifiers=[ classifiers=[
'License :: OSI Approved :: MIT License', 'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent', 'Operating System :: OS Independent',
@ -20,4 +21,5 @@ setup(
'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.4',
], ],
install_requires=['demjson']
) )