Commented out /etc directory code in setup.py - the global configuration file is now discouraged and it also breaks RTD build

This commit is contained in:
Fabio Manganiello 2018-06-26 01:12:16 +02:00
parent 1179823e0d
commit 9a2176d0af
1 changed files with 4 additions and 4 deletions

View File

@ -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",