add tested python impls to pkg spec; fixes #127

pull/134/head
Tobias Oberstein 2023-12-15 14:38:26 +01:00 committed by Thorsten Liebig
parent 831bd7c835
commit eb4845975a
1 changed files with 7 additions and 0 deletions

View File

@ -31,6 +31,12 @@ setup(
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Scientific/Engineering',
'Topic :: Software Development :: Libraries :: Python Modules',
'Operating System :: POSIX :: Linux',
@ -43,5 +49,6 @@ setup(
url = 'https://openEMS.de',
packages=["openEMS", ],
package_data={'openEMS': ['*.pxd']},
python_requires='>=3.9',
ext_modules = cythonize(extensions, language_level = "3")
)