From ed491fb1d8a85f3ec8028b4642c500a3ceb23b99 Mon Sep 17 00:00:00 2001 From: Jack Kelly Date: Wed, 16 Jul 2014 16:05:31 +0100 Subject: [PATCH] Must not install with `python setup.py install`. Must use `develop`. #6 --- README.md | 11 ++++------- setup.py | 2 +- 2 files changed, 5 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index e769891..6d216fc 100644 --- a/README.md +++ b/README.md @@ -138,17 +138,14 @@ Installation ============ If you want to use the Python package in order to concatenate the -common appliance metadata into a single dictionary then please run: +common appliance metadata then please run: ``` -sudo python setup.py install +sudo python setup.py develop ``` -Or, if you want to develop: - -``` -sudo python setup.py install -``` +Please do *not* use `python setup.py install` until I have updated +`setup.py` to copy the relevant `*.yaml` files. See [issue #6](https://github.com/nilmtk/nilm_metadata/issues/6). Related projects ================ diff --git a/setup.py b/setup.py index c5930d8..d9f2a5b 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ author='Jack Kelly', author_email='jack.kelly@imperial.ac.uk', url='https://github.com/nilmtk/nilm_metadata', - long_description=open('README.md').read(), +# long_description=open('README.md').read(), license='MIT', classifiers=[ 'Development Status :: 3 - Alpha',