add missing package python dependencies

pull/134/head
Tobias Oberstein 2023-12-15 15:36:20 +01:00 committed by Thorsten Liebig
parent eb4845975a
commit 5bc31d0255
1 changed files with 4 additions and 0 deletions

View File

@ -50,5 +50,9 @@ setup(
packages=["openEMS", ],
package_data={'openEMS': ['*.pxd']},
python_requires='>=3.9',
install_requires=[
'h5py>=3.10.0', # BSD 3-Clause (https://github.com/h5py/h5py/blob/master/LICENSE)
'numpy>=1.26.2', # BSD 3-Clause (https://github.com/numpy/numpy/blob/main/LICENSE.txt)
],
ext_modules = cythonize(extensions, language_level = "3")
)