blob: f38644741a17501157e721ebf5093f894b1c1062 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name = 'boltzgen',
version = '0.1',
description = 'Symbolic generation of LBM kernels',
author = 'Adrian Kummerlaender',
packages = find_packages(),
include_package_data = True,
package_data = {'boltzgen': ['kernel/template/*.mako', 'kernel/template/pattern/*.mako']},
install_requires = [
'sympy >= 1.4',
'numpy >= 1.17.2',
'mako >= 1.0.12'
]
)
|