From 79305fd3712687679f87465850458ab6b5848dce Mon Sep 17 00:00:00 2001
From: lukken <lukken@astron.nl>
Date: Wed, 9 Mar 2022 12:40:51 +0000
Subject: [PATCH] L2SS-590: Remove old attribute wrapper file

---
 README.md                     |  3 +--
 tangostationcontrol/README.md | 26 --------------------------
 2 files changed, 1 insertion(+), 28 deletions(-)
 delete mode 100644 tangostationcontrol/README.md

diff --git a/README.md b/README.md
index 355b2411f..e92ee9f87 100644
--- a/README.md
+++ b/README.md
@@ -13,8 +13,7 @@ Station Control software related to Tango devices.
   * [Tango Prometheus exporter](docker-compose/tango-prometheus-exporter/ska-tango-grafana-exporter/README.md)
 * [ReadTheDocs (Sphinx / ReStructuredText) documentation](tangostationcontrol/docs/README.md)
 * [Source code documentation](tangostationcontrol/README.md)
-  * [Attribute wrapper documentation](tangostationcontrol/README.md)
-  * [Extensive attribute wrapper documentation](tangostationcontrol/tangostationcontrol/clients/README.md)
+  * [Attribute wrapper documentation](tangostationcontrol/tangostationcontrol/clients/README.md)
   * [Archiver documentation](tangostationcontrol/tangostationcontrol/toolkit/README.md)
   * [Adding a new tango device](tangostationcontrol/tangostationcontrol/devices/README.md)
   * [HDF5 statistics](tangostationcontrol/tangostationcontrol/statistics_writer/README.md)
diff --git a/tangostationcontrol/README.md b/tangostationcontrol/README.md
deleted file mode 100644
index 0fef1b58a..000000000
--- a/tangostationcontrol/README.md
+++ /dev/null
@@ -1,26 +0,0 @@
-# Tango Station Control Device wrappers
-
-This code provides an attribute_wrapper class in place of attributes for tango devices. the attribute wrappers contain additional code 
-that moves a lot of the complexity and redundant code to the background. 
-
-The tango Device class is also abstracted further to a "lofar_device" class. This class wraps 
-
-The only things required on the users part are to declare the attributes using the attribute_wrapper (see `example/example_device`),
-declare what client the attribute has to use in the initialisation and provide support for the used clients. 
-To see how to add support for new clients, see `clients/README.md`
-
-In addition it also provides an abstraction to the tango device, specifically for hardware devices. Examples of hardware devices 
-can be found in TODO and an empty template can be found in `HW_device_template.py`
-
-Requires numpy 
-```pip install numpy```
-
-Requires opcua 
-```pip install opcua```
-
-Requires pytango 
-```pip install pytango```
-
-### usage
-You can start the device by calling it in any console with:
-<Device_name>.py instance_name
-- 
GitLab