From ef0a8762f01e07b34e4899f38a9054c55fa8b218 Mon Sep 17 00:00:00 2001 From: Qiangning Hong Date: Mon, 21 Nov 2016 15:27:25 +0800 Subject: [PATCH] Add pytz in install_requires `import trello` requires `pytz` installed. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index f2322b8c..c54083fd 100755 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.3', ], - install_requires=["requests", "requests-oauthlib >= 0.4.1", "python-dateutil"], + install_requires=["requests", "requests-oauthlib >= 0.4.1", "python-dateutil", "pytz"], packages=find_packages(), include_package_data=True, )