From abf90f14e0f5247c90f9513d0051b90f3def1b87 Mon Sep 17 00:00:00 2001 From: Staf Verhaegen Date: Wed, 4 Dec 2019 16:29:31 +0100 Subject: [PATCH] Setup new structure for code New structure will be compatible with easy pip/conda installing. --- c4m/__init__.py | 1 + c4m/cocotb/__init__.py | 1 + c4m/cocotb/jtag/__init__.py | 0 c4m/nmigen/__init__.py | 1 + c4m/nmigen/jtag/__init__.py | 0 5 files changed, 3 insertions(+) create mode 100644 c4m/__init__.py create mode 100644 c4m/cocotb/__init__.py create mode 100644 c4m/cocotb/jtag/__init__.py create mode 100644 c4m/nmigen/__init__.py create mode 100644 c4m/nmigen/jtag/__init__.py diff --git a/c4m/__init__.py b/c4m/__init__.py new file mode 100644 index 0000000..69e3be5 --- /dev/null +++ b/c4m/__init__.py @@ -0,0 +1 @@ +__path__ = __import__('pkgutil').extend_path(__path__, __name__) diff --git a/c4m/cocotb/__init__.py b/c4m/cocotb/__init__.py new file mode 100644 index 0000000..69e3be5 --- /dev/null +++ b/c4m/cocotb/__init__.py @@ -0,0 +1 @@ +__path__ = __import__('pkgutil').extend_path(__path__, __name__) diff --git a/c4m/cocotb/jtag/__init__.py b/c4m/cocotb/jtag/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/c4m/nmigen/__init__.py b/c4m/nmigen/__init__.py new file mode 100644 index 0000000..69e3be5 --- /dev/null +++ b/c4m/nmigen/__init__.py @@ -0,0 +1 @@ +__path__ = __import__('pkgutil').extend_path(__path__, __name__) diff --git a/c4m/nmigen/jtag/__init__.py b/c4m/nmigen/jtag/__init__.py new file mode 100644 index 0000000..e69de29 -- 2.30.2