From 9a2176d0af7e0df979102de32707a59a9270680c Mon Sep 17 00:00:00 2001 From: Fabio Manganiello Date: Tue, 26 Jun 2018 01:12:16 +0200 Subject: [PATCH] Commented out /etc directory code in setup.py - the global configuration file is now discouraged and it also breaks RTD build --- setup.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index 076a626f..9dbf5762 100755 --- a/setup.py +++ b/setup.py @@ -28,7 +28,7 @@ def create_etc_dir(): plugins = pkg_files('platypush/plugins') backend = pkg_files('platypush/backend') -create_etc_dir() +# create_etc_dir() setup( name = "platypush", @@ -48,9 +48,9 @@ setup( 'pusher=platypush.pusher:main', ], }, - data_files = [ - ('/etc/platypush', ['platypush/config.example.yaml']) - ], + # data_files = [ + # ('/etc/platypush', ['platypush/config.example.yaml']) + # ], long_description = read('README.md'), classifiers = [ "Topic :: Utilities",