add install_requires

This commit is contained in:
ssut 2015-06-06 00:45:33 +09:00
parent 3935cf0bb8
commit 586790270b
1 changed files with 5 additions and 1 deletions

View File

@ -26,7 +26,11 @@ def install():
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4'],
packages=find_packages()
packages=find_packages(),
install_requires=[
'requests',
'future',
],
)
if __name__ == "__main__":