From 464ec147dc4a20ff2e822e18f697c66c41d31092 Mon Sep 17 00:00:00 2001
From: Christian Darsow-Fromm <cdarsowf@physnet.uni-hamburg.de>
Date: Tue, 19 Mar 2019 19:14:54 +0100
Subject: [PATCH] split doc an package

---
 .gitlab-ci.yml | 10 +++++++++-
 doc/install.md |  8 ++------
 2 files changed, 11 insertions(+), 7 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index cf31ad8..748a245 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -19,10 +19,18 @@ package:
   stage: build
   script:
     - make bdist
-    - make doc
   artifacts:
     paths:
       - dist
+    expire_in: 1 week
+
+docs:
+  image: lasnq/nqontrol
+  stage: build
+  script:
+    - make doc
+  artifacts:
+    paths:
       - doc/_build/html
     expire_in: 1 week
 
diff --git a/doc/install.md b/doc/install.md
index 38da1d7..93d4555 100644
--- a/doc/install.md
+++ b/doc/install.md
@@ -34,7 +34,8 @@ More distribution methods will follow.
 
 To install the dependencies on a Unix system, use:
 ```bash
-make requirements
+make requirements      # to install in a virtualenv
+make requirements-user # to install on user level
 ```
 The general version for the only non-Unix system is:
 ```bash
@@ -48,11 +49,6 @@ The pythonic installation to the users site packages is done with:
 python3 setup.py install --user
 ```
 
-### Windows
-
-Install the `*.exe`. I don't know, what happens with the dependencies.
-Maybe it needs little work to install them automatically.
-
 ## Install the ADwin Library
 
 ### On Linux  
-- 
GitLab