Skip to content
Snippets Groups Projects
Commit 7ef3ac68 authored by Stephan Kuschel's avatar Stephan Kuschel
Browse files

add openPMD example to tests

parent 4b1fe430
No related branches found
No related tags found
No related merge requests found
...@@ -68,7 +68,8 @@ def run_alltests(python='python'): ...@@ -68,7 +68,8 @@ def run_alltests(python='python'):
'--ignore=W391,E123,E226,E24 --max-line-length=99', '--ignore=W391,E123,E226,E24 --max-line-length=99',
python + os.path.join('examples', 'simpleexample.py'), python + os.path.join('examples', 'simpleexample.py'),
python + os.path.join('examples', 'particleshapedemo.py'), python + os.path.join('examples', 'particleshapedemo.py'),
python + os.path.join('examples', 'time_cythonfunctions.py')] python + os.path.join('examples', 'time_cythonfunctions.py'),
python + os.path.join('examples', 'openPMD.py')]
for cmd in cmds: for cmd in cmds:
runcmd(cmd) runcmd(cmd)
......
...@@ -30,7 +30,7 @@ setup(name='postpic', ...@@ -30,7 +30,7 @@ setup(name='postpic',
include_dirs = [numpy.get_include()], include_dirs = [numpy.get_include()],
license='GPLv3+', license='GPLv3+',
setup_requires=['cython>=0.18'], setup_requires=['cython>=0.18'],
install_requires=['matplotlib', 'numpy>=1.7', 'scipy', 'future'], install_requires=['matplotlib', 'numpy>=1.7', 'scipy', 'future', 'urllib3'],
keywords = ['PIC', 'particle-in-cell', 'plasma', 'physics', 'plasma physics', keywords = ['PIC', 'particle-in-cell', 'plasma', 'physics', 'plasma physics',
'laser', 'laser plasma', 'particle acceleration'], 'laser', 'laser plasma', 'particle acceleration'],
classifiers=[ classifiers=[
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment