forked from platypush/platypush
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:
parent
1179823e0d
commit
9a2176d0af
1 changed files with 4 additions and 4 deletions
8
setup.py
8
setup.py
|
@ -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",
|
||||||
|
|
Loading…
Reference in a new issue