From 0f7229c572c1f6da45534dc7ed18da8914432a06 Mon Sep 17 00:00:00 2001 From: Alan Descoins Date: Tue, 22 Aug 2017 19:40:28 -0300 Subject: [PATCH] Change installation instructions. --- MANIFEST.in | 4 ++-- README.md | 6 ++++-- tox.ini | 4 ++-- 3 files changed, 8 insertions(+), 6 deletions(-) diff --git a/MANIFEST.in b/MANIFEST.in index 8cef8d21..c1562445 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,3 +1,3 @@ include *.md *.txt tox.ini LICENSE -recursive-include src *.html -recursive-include src *.yml \ No newline at end of file +recursive-include luminoth *.html +recursive-include luminoth *.yml \ No newline at end of file diff --git a/README.md b/README.md index c9a12a3e..c05ed5ce 100644 --- a/README.md +++ b/README.md @@ -34,8 +34,6 @@ Luminoth currently supports Python 2.7 and 3.4–3.6. If [TensorFlow](https://www.tensorflow.org) and [Sonnet](https://github.com/deepmind/sonnet) are already installed, Luminoth will use those versions. -You can check the installation is working by running `lumi --help`. - ## Install with CPU support Just run: ```bash @@ -66,6 +64,10 @@ $ cd luminoth $ pip install -e . ``` +## Check that the installation worked + +Simply run `lumi --help`. + # Supported models Currently we are focusing on object detection problems, and have a fully functional version of [Faster RCNN](https://arxiv.org/abs/1506.01497). There are more models in progress (SSD and Mask RCNN to name a couple), and we look forward to opening up those implementations. diff --git a/tox.ini b/tox.ini index 8f6f0cb5..c70d158e 100644 --- a/tox.ini +++ b/tox.ini @@ -10,6 +10,6 @@ deps= commands = pip install -e . check-manifest - flake8 src - coverage run -m unittest discover -s src -p "*_test.py" + flake8 luminoth + coverage run -m unittest discover -s luminoth -p "*_test.py" codecov -e TOXENV