From 6b589d811cfcc1e84048a80d114926a0eba031c8 Mon Sep 17 00:00:00 2001 From: rorschachhb Date: Fri, 15 Jul 2016 01:43:38 +0800 Subject: [PATCH] rearrange folder structure --- __init__.py => python/__init__.py | 0 mpyloess.py => python/mpyloess.py | 0 pyloess.py => python/pyloess.py | 0 setup.py | 2 +- 4 files changed, 1 insertion(+), 1 deletion(-) rename __init__.py => python/__init__.py (100%) rename mpyloess.py => python/mpyloess.py (100%) rename pyloess.py => python/pyloess.py (100%) diff --git a/__init__.py b/python/__init__.py similarity index 100% rename from __init__.py rename to python/__init__.py diff --git a/mpyloess.py b/python/mpyloess.py similarity index 100% rename from mpyloess.py rename to python/mpyloess.py diff --git a/pyloess.py b/python/pyloess.py similarity index 100% rename from pyloess.py rename to python/pyloess.py diff --git a/setup.py b/setup.py index d42c56f..5271c5e 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ def configuration(parent_package='',top_path=None): from numpy.distutils.misc_util import Configuration from numpy.distutils.system_info import get_info, dict_append - confgr = Configuration('pyloess',parent_package,top_path) + confgr = Configuration('pyloess',parent_package,top_path, 'python') # Configuration of LOWESS confgr.add_extension('_lowess', sources=[join('src', 'f_lowess.pyf'),