From a25965e3e49cbed65aa5d5fc1497df72d8e0452f Mon Sep 17 00:00:00 2001 From: Fabio Manganiello Date: Mon, 14 Jan 2019 00:00:28 +0100 Subject: [PATCH] prctl moved to optional dependencies as it requires libcap which is not supported by ReadTheDocs --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 9d9f8e34..b4e2e2ad 100755 --- a/setup.py +++ b/setup.py @@ -63,9 +63,9 @@ setup( 'pyyaml', 'redis', 'requests', - 'python-prctl', ], extras_require = { + 'Support for custom thread and process names': ['python-prctl'], 'Support for Apache Kafka backend': ['kafka-python'], 'Support for Pushbullet backend': ['requests', 'pushbullet.py'], 'Support for HTTP backend': ['flask','websockets', 'python-dateutil'],