CelerisLab/setup.py
Frank14f 6e3756c587 fix(esopull): correct init layout and pre-streaming semantics (v0.5.1)
EsoPull curved boundaries and wall BCs now use consistent backing-layout
reads; InitEsoPull writes equilibrium in t=0 EsoPull layout. Cache N_OBJS
after compile and atomic config header writes to avoid parallel races.
Adds config screening tools, flume configs, and FP16S/EsoPull diagnosis doc.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-27 22:32:01 +08:00

42 lines
1.3 KiB
Python

from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name='CelerisLab',
version='0.5.1',
author='Frank14f',
description='GPU-accelerated Lattice Boltzmann Method (LBM) CFD solver using CUDA',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/frank14f/CelerisLab',
packages=find_packages(where='src'),
package_dir={'': 'src'},
package_data={
'CelerisLab': [
'lbm/kernels/**/*.cu',
'lbm/kernels/**/*.cuh',
'lbm/kernels/**/*.h',
'configs/*.json',
],
},
install_requires=[
'pycuda>=2020.1',
'numpy>=1.19.0',
'scipy>=1.5.0',
],
python_requires='>=3.8',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Physics',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
],
)