Skip to content

Commit

Permalink
packaging details
Browse files Browse the repository at this point in the history
  • Loading branch information
jkfindeisen committed Oct 13, 2021
1 parent a3e1d65 commit 6d5b5f0
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package/create_package.bat
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 6 additions & 2 deletions package/sdk_readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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.
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.
4 changes: 2 additions & 2 deletions src/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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='[email protected]',
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)

0 comments on commit 6d5b5f0

Please sign in to comment.