From 6d5b5f0f94df65cfbc420d6b92b6390cb1cef523 Mon Sep 17 00:00:00 2001 From: jkfindeisen Date: Wed, 13 Oct 2021 14:17:12 +0200 Subject: [PATCH] packaging details --- package/create_package.bat | 2 +- package/sdk_readme.txt | 8 ++++++-- src/python/setup.py | 4 ++-- 3 files changed, 9 insertions(+), 5 deletions(-) diff --git a/package/create_package.bat b/package/create_package.bat index 3a1c8af..3411a89 100644 --- a/package/create_package.bat +++ b/package/create_package.bat @@ -52,7 +52,7 @@ set OUTPUT_ZIP=%BUILD_BASE%\%OUTPUT_NAME%.zip set PYTHON_INSTALL=%ROOT_INSTALL%\python set x64_MATLAB_INSTALL=%ROOT_INSTALL%\matlab -set SDK_INSTALL_ROOT=%ROOT_INSTALL%\Gpuspline_sdk +set SDK_INSTALL_ROOT=%ROOT_INSTALL%\sdk set x64_BUILD=%BUILD_BASE%\VC16x64\RelWithDebInfo set x64_BUILD_LIB=%BUILD_BASE%\VC16x64\src\RelWithDebInfo diff --git a/package/sdk_readme.txt b/package/sdk_readme.txt index 40f1357..364b3a8 100644 --- a/package/sdk_readme.txt +++ b/package/sdk_readme.txt @@ -5,6 +5,10 @@ Gpuspline 1.0.0 Compiled with the Microsoft Visual Studio 2019 C++ compiler. -Folder include contains the spline.h header file representing the C API. +Folder sdk/include contains the spline.h header file representing the C API. -Folder win64 contains the 64 bit compiled dynamic link library (built in single precision) and import library. \ No newline at end of file +Folder sdk/win64 contains the 64 bit compiled dynamic link library (built in single precision) and import library. + +Folder matlab contains the Matlab binding for Gpuspline (compiled against Matlab 2018b) and examples. + +Folder python contains the Python binding for Gpuspline and examples. diff --git a/src/python/setup.py b/src/python/setup.py index 75cedbe..a3ac599 100644 --- a/src/python/setup.py +++ b/src/python/setup.py @@ -37,12 +37,12 @@ def get_long_description(): description='', long_description=get_long_description(), url='https://github.com/gpufit/Gpuspline', - author='M. Bates, A. Przybylski, B. Thiel, and J. Keller-Findeisen', + author='M. Bates, A. Przybylski, and J. Keller-Findeisen', author_email='a@b.c', license='MIT license', classifiers=[], keywords='', packages=find_packages(where=HERE), package_data={'pygpuspline': ['*{}'.format(lib_ext)]}, - install_requires=['NumPy>=1.0'], + install_requires=['NumPy>=1.8'], zip_safe=False) \ No newline at end of file