From 657ff387dd64220cf5711b42432b77ae5f4041ac Mon Sep 17 00:00:00 2001 From: Steffen Vogel Date: Sun, 28 Oct 2018 14:39:10 +0100 Subject: [PATCH] move python client into python dir --- clients/python | 1 + clients/python/.gitignore | 1 - {clients/python => python/villas/client}/CMakeLists.txt | 0 python/villas/client/__init__.py | 0 clients/python/villas.py => python/villas/client/client.py | 0 5 files changed, 1 insertion(+), 1 deletion(-) create mode 120000 clients/python delete mode 100644 clients/python/.gitignore rename {clients/python => python/villas/client}/CMakeLists.txt (100%) create mode 100644 python/villas/client/__init__.py rename clients/python/villas.py => python/villas/client/client.py (100%) diff --git a/clients/python b/clients/python new file mode 120000 index 000000000..b2616ca4b --- /dev/null +++ b/clients/python @@ -0,0 +1 @@ +../python/villas/client/ \ No newline at end of file diff --git a/clients/python/.gitignore b/clients/python/.gitignore deleted file mode 100644 index 0d20b6487..000000000 --- a/clients/python/.gitignore +++ /dev/null @@ -1 +0,0 @@ -*.pyc diff --git a/clients/python/CMakeLists.txt b/python/villas/client/CMakeLists.txt similarity index 100% rename from clients/python/CMakeLists.txt rename to python/villas/client/CMakeLists.txt diff --git a/python/villas/client/__init__.py b/python/villas/client/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/clients/python/villas.py b/python/villas/client/client.py similarity index 100% rename from clients/python/villas.py rename to python/villas/client/client.py