From c155319b59d0763e5ffadc5cc89336008687e878 Mon Sep 17 00:00:00 2001 From: Christian Zimmermann Date: Mon, 22 May 2023 22:46:29 +0200 Subject: [PATCH] rename base -> core --- cnorxz/{base => core}/array.pxd | 0 cnorxz/{base => core}/cereal.pxd | 0 cnorxz/{base/base.pyx => core/core.pyx} | 0 cnorxz/{base => core}/index.pxd | 0 cnorxz/{base => core}/range.pxd | 0 cnorxz/{base => core}/range_factory.pxd | 0 setup.py | 4 ++-- 7 files changed, 2 insertions(+), 2 deletions(-) rename cnorxz/{base => core}/array.pxd (100%) rename cnorxz/{base => core}/cereal.pxd (100%) rename cnorxz/{base/base.pyx => core/core.pyx} (100%) rename cnorxz/{base => core}/index.pxd (100%) rename cnorxz/{base => core}/range.pxd (100%) rename cnorxz/{base => core}/range_factory.pxd (100%) diff --git a/cnorxz/base/array.pxd b/cnorxz/core/array.pxd similarity index 100% rename from cnorxz/base/array.pxd rename to cnorxz/core/array.pxd diff --git a/cnorxz/base/cereal.pxd b/cnorxz/core/cereal.pxd similarity index 100% rename from cnorxz/base/cereal.pxd rename to cnorxz/core/cereal.pxd diff --git a/cnorxz/base/base.pyx b/cnorxz/core/core.pyx similarity index 100% rename from cnorxz/base/base.pyx rename to cnorxz/core/core.pyx diff --git a/cnorxz/base/index.pxd b/cnorxz/core/index.pxd similarity index 100% rename from cnorxz/base/index.pxd rename to cnorxz/core/index.pxd diff --git a/cnorxz/base/range.pxd b/cnorxz/core/range.pxd similarity index 100% rename from cnorxz/base/range.pxd rename to cnorxz/core/range.pxd diff --git a/cnorxz/base/range_factory.pxd b/cnorxz/core/range_factory.pxd similarity index 100% rename from cnorxz/base/range_factory.pxd rename to cnorxz/core/range_factory.pxd diff --git a/setup.py b/setup.py index 0d485d0..8ddca0e 100644 --- a/setup.py +++ b/setup.py @@ -56,9 +56,9 @@ if __name__ == "__main__": extensions = list() extensions.append( setuptools.Extension( - name = libname + ".base", + name = libname + ".core", sources = [ - "cnorxz/base/base.pyx", + "cnorxz/core/core.pyx", ], define_macros=[('HAVE_CEREAL',None)], **default_extension_args