mirror of https://github.com/dnomd343/klotski.git
Dnomd343
4 weeks ago
3 changed files with 85 additions and 34 deletions
@ -1,22 +1,14 @@ |
|||||
|
#!/usr/bin/env python3 |
||||
|
# -*- coding: utf-8 -*- |
||||
|
|
||||
from skbuild import setup |
from skbuild import setup |
||||
|
|
||||
setup( |
setup( |
||||
name='py-klotski', |
|
||||
version='0.0.1', |
|
||||
description='Klotski multifunctional engine with high performance', |
|
||||
author='Dnomd343', |
|
||||
author_email='dnomd343@gmail.com', |
|
||||
license='BSD-3-Clause', |
|
||||
url='https://github.com/dnomd343/klotski', |
|
||||
packages=['klotski'], |
packages=['klotski'], |
||||
package_dir={'': 'src'}, |
package_dir={'': 'src'}, |
||||
cmake_install_dir='src/klotski', |
cmake_install_dir='src/klotski', |
||||
cmake_args=[ |
cmake_args=[ |
||||
'-DKLSK_ENABLE_TESTING:BOOL=OFF', |
'-DKLSK_ENABLE_LTO:BOOL=ON', |
||||
'-DKLSK_ENABLE_BENCHMARK:BOOL=OFF', |
|
||||
'-DKLSK_C_FFI:BOOL=OFF', |
|
||||
'-DKLSK_RUST_FFI:BOOL=OFF', |
|
||||
'-DKLSK_PYTHON_FFI:BOOL=ON', |
'-DKLSK_PYTHON_FFI:BOOL=ON', |
||||
], |
] |
||||
python_requires=">=3.7", |
|
||||
) |
) |
||||
|
Loading…
Reference in new issue