Depend on dulwich and future.

This commit is contained in:
Simon Forman 2020-04-24 17:11:24 -07:00
parent 9f36207fe3
commit 9f55b5f4d8
1 changed files with 5 additions and 1 deletions

View File

@ -18,7 +18,7 @@
# You should have received a copy of the GNU General Public License
# along with Thun. If not see <http://www.gnu.org/licenses/>.
#
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',
]
)