From 76bc9de261c2c674509515346cf813562db181a5 Mon Sep 17 00:00:00 2001 From: Shin'ichiro Kawasaki Date: Mon, 21 Sep 2020 20:59:00 +0900 Subject: [PATCH] blupey_scratch_link: Create blupey_scratch_link To create PyPI package for bluepy-scratch-link, create a package directory to hold the python scripts. Also add __init__.py to mark the directory as a package. Signed-off-by: Shin'ichiro Kawasaki --- bluepy_scratch_link/__init__.py | 0 bluepy_helper_cap.py => bluepy_scratch_link/bluepy_helper_cap.py | 0 gencert.py => bluepy_scratch_link/gencert.py | 0 scratch_link.py => bluepy_scratch_link/scratch_link.py | 0 4 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 bluepy_scratch_link/__init__.py rename bluepy_helper_cap.py => bluepy_scratch_link/bluepy_helper_cap.py (100%) rename gencert.py => bluepy_scratch_link/gencert.py (100%) rename scratch_link.py => bluepy_scratch_link/scratch_link.py (100%) diff --git a/bluepy_scratch_link/__init__.py b/bluepy_scratch_link/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/bluepy_helper_cap.py b/bluepy_scratch_link/bluepy_helper_cap.py similarity index 100% rename from bluepy_helper_cap.py rename to bluepy_scratch_link/bluepy_helper_cap.py diff --git a/gencert.py b/bluepy_scratch_link/gencert.py similarity index 100% rename from gencert.py rename to bluepy_scratch_link/gencert.py diff --git a/scratch_link.py b/bluepy_scratch_link/scratch_link.py similarity index 100% rename from scratch_link.py rename to bluepy_scratch_link/scratch_link.py