Skip to content
Snippets Groups Projects
Commit 12bd95b7 authored by Markus Holzer's avatar Markus Holzer
Browse files

First version of setup.py file

parent ffe98bd7
No related merge requests found
......@@ -70,3 +70,6 @@ CMakeDefs.h
/walberla-config.cmake
/cmake-build-debug/
/cmake-build-release/
# setup.py
python/*.egg-info
#!/usr/bin/env python
# install package localy with 'pip install -e .'
from setuptools import setup
setup(name='pystencils_walberla',
version='1.0',
description='Python packages for WaLBerla kernel generation',
keywords='walberla pystencils lbmpy',
author='LSS',
author_email='cs10-contact@fau.de',
url='https://walberla.net/',
packages=['pystencils_walberla', 'lbmpy_walberla'],
install_requires=['pystencils', 'lbmpy', 'sympy>=1.1', 'numpy', 'jinja2'],
package_data={
# Include all template files
"": ['.tmpl.*'],
# Or specifics files:
"hello": ["*.msg"],
},
extras_require={
'cpuinfo': ['py-cpuinfo'],
},
python_requires='>=3.6',
)
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment