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') plugins = pkg_files('platypush/plugins')
backend = pkg_files('platypush/backend') backend = pkg_files('platypush/backend')
create_etc_dir() # create_etc_dir()
setup( setup(
name = "platypush", name = "platypush",
@ -48,9 +48,9 @@ setup(
'pusher=platypush.pusher:main', 'pusher=platypush.pusher:main',
], ],
}, },
data_files = [ # data_files = [
('/etc/platypush', ['platypush/config.example.yaml']) # ('/etc/platypush', ['platypush/config.example.yaml'])
], # ],
long_description = read('README.md'), long_description = read('README.md'),
classifiers = [ classifiers = [
"Topic :: Utilities", "Topic :: Utilities",