From 9f55b5f4d85a4c568a2b0e72503c7e483b7e698d Mon Sep 17 00:00:00 2001 From: Simon Forman Date: Fri, 24 Apr 2020 17:11:24 -0700 Subject: [PATCH] Depend on dulwich and future. --- setup.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index e03a8bf..7eaadb3 100755 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ # You should have received a copy of the GNU General Public License # along with Thun. If not see . # -from distutils.core import setup +from setuptools import setup from textwrap import dedent @@ -44,4 +44,8 @@ setup( 'Programming Language :: Other', 'Topic :: Software Development :: Interpreters', ], + install_requires=[ + 'dulwich', + 'future', + ] )