From 586790270b7bdbc2ea96351e58d6b504b28fa38b Mon Sep 17 00:00:00 2001 From: ssut Date: Sat, 6 Jun 2015 00:45:33 +0900 Subject: [PATCH] add install_requires --- setup.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index df54572..f547604 100644 --- a/setup.py +++ b/setup.py @@ -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__":