From e3f244325cc77cd52f4e20d749d9006883c100c9 Mon Sep 17 00:00:00 2001 From: Oleksandr Pavlyk Date: Sun, 11 Feb 2024 08:26:02 -0600 Subject: [PATCH] Moved tests into project layout --- {tests => mkl/tests}/test_mkl_service.py | 0 setup.py | 9 ++++++++- 2 files changed, 8 insertions(+), 1 deletion(-) rename {tests => mkl/tests}/test_mkl_service.py (100%) diff --git a/tests/test_mkl_service.py b/mkl/tests/test_mkl_service.py similarity index 100% rename from tests/test_mkl_service.py rename to mkl/tests/test_mkl_service.py diff --git a/setup.py b/setup.py index db98f4e..434a33b 100644 --- a/setup.py +++ b/setup.py @@ -146,7 +146,14 @@ def setup_package(): python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*', setup_requires=['setuptools', 'cython'], install_requires=[], - packages=setuptools.find_packages(), + packages=[ + "mkl", + ], + package_data={ + "mkl" : [ + "tests/*.*", + ] + }, ext_modules=get_extensions() ) setup(**metadata)