mirror of https://github.com/dnomd343/klotski.git
Dnomd343
1 month ago
3 changed files with 31 additions and 15 deletions
@ -1 +1,7 @@ |
|||||
# klotski python ffi |
# Klotski Engine |
||||
|
|
||||
|
> Klotski multifunctional engine with high performance. |
||||
|
|
||||
|
The project is under development and is currently in feature preview. |
||||
|
|
||||
|
Note that the interfaces are not stable yet, and documentation will be added in subsequent versions. |
||||
|
@ -1,14 +1,22 @@ |
|||||
from skbuild import setup |
from skbuild import setup |
||||
|
|
||||
setup( |
setup( |
||||
name="py-klotski", |
name='py-klotski', |
||||
version="0.0.1", |
version='0.0.1', |
||||
description="klotski engine", |
description='Klotski multifunctional engine with high performance', |
||||
author="Dnomd343", |
author='Dnomd343', |
||||
license="MIT", |
author_email='dnomd343@gmail.com', |
||||
packages=["klotski"], |
license='BSD-3-Clause', |
||||
package_dir={"": "src"}, |
url='https://github.com/dnomd343/klotski', |
||||
cmake_install_dir="src/klotski", |
packages=['klotski'], |
||||
cmake_args=['-DKLSK_ENABLE_TESTING=OFF', '-DKLSK_ENABLE_BENCHMARK=OFF', '-DKLSK_C_FFI=OFF', '-DKLSK_RUST_FFI=OFF', '-DKLSK_PYTHON_FFI=ON'], |
package_dir={'': 'src'}, |
||||
python_requires=">=3.9", |
cmake_install_dir='src/klotski', |
||||
|
cmake_args=[ |
||||
|
'-DKLSK_ENABLE_TESTING:BOOL=OFF', |
||||
|
'-DKLSK_ENABLE_BENCHMARK:BOOL=OFF', |
||||
|
'-DKLSK_C_FFI:BOOL=OFF', |
||||
|
'-DKLSK_RUST_FFI:BOOL=OFF', |
||||
|
'-DKLSK_PYTHON_FFI:BOOL=ON', |
||||
|
], |
||||
|
python_requires=">=3.7", |
||||
) |
) |
||||
|
Loading…
Reference in new issue