From 6db5a97fa45c5777ae7aa14b6eff19098269b24e Mon Sep 17 00:00:00 2001 From: "kaleb@coded.io" Date: Thu, 11 Oct 2018 22:45:19 +0000 Subject: [PATCH] Add missing dependencies to setup.py --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 0978c5d..995e285 100755 --- a/setup.py +++ b/setup.py @@ -1,5 +1,5 @@ #!/usr/bin/env python3 -from distutils.core import setup +from setuptools import setup import subprocess import glob import os @@ -23,7 +23,7 @@ setup( author = 'Drew DeVault', author_email = 'sir@cmpwn.com', url = 'https://git.sr.ht/~sircmpwn/git.sr.ht', - install_requires = ['srht', 'flask-login'], + install_requires = ['srht', 'flask-login', 'redis', 'pygit2', 'pygments'], license = 'AGPL-3.0', package_data={ 'gitsrht': [ -- 2.38.4