Blob Blame History Raw
diff --git a/setup.py b/setup.py
index ce86b0b..4490712 100755
--- a/setup.py
+++ b/setup.py
@@ -50,6 +50,11 @@ else:
         'PyGObject',
     ]
 
+install_requires = [
+    item for item in install_requires
+    if not item.startswith('koji') and not item.startswith('rpm-py-installer')
+]
+
 readme_rst = os.path.join(setup_py_path, 'README.rst')
 with open(readme_rst, 'r') as readme:
     long_description = readme.read().rstrip()