From 22b96d153f55647010618dd5f10c6e15f081306c Mon Sep 17 00:00:00 2001 From: Aurélien Bompard Date: Sep 09 2019 14:31:55 +0000 Subject: Include the tests to allow checks at rpm build time Also don't list koji as a python dependency for now, because of a koji packaging bug. Signed-off-by: Aurélien Bompard --- diff --git a/MANIFEST.in b/MANIFEST.in index 00c43b4..2ebc08d 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,3 +1,5 @@ include LICENSE include README.rst include robosignatory.toml +include tox.ini +graft tests diff --git a/setup.py b/setup.py index 303835d..3326e23 100644 --- a/setup.py +++ b/setup.py @@ -38,11 +38,12 @@ setup( license='gplv2+', install_requires=[ "fedora_messaging", - "koji", "psutil", "boto3", "six", "click", + # Don't depend on koji here: https://bugzilla.redhat.com/show_bug.cgi?id=1537197 + #"koji", ], tests_require=[ "pytest",